A Deno-powered backend service for Plants vs. Zombies: MODDED. [Read-only GitHub mirror] docs.pvzm.net
express typescript expressjs plant deno jspvz pvzm game online backend plants-vs-zombies zombie javascript plants modded vs plantsvszombies openapi pvz noads
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 0.6.6 30 lines 969 B view raw
1<!doctype html> 2<html lang="en"> 3 <head> 4 <meta charset="UTF-8" /> 5 <meta name="viewport" content="width=device-width, initial-scale=1.0" /> 6 <link rel="stylesheet" href="css/pico.classless.green.css" /> 7 <title>Authentication Error</title> 8 <style> 9 .error-icon { 10 font-size: 72px; 11 color: #e74c3c; 12 margin-bottom: 1rem; 13 user-select: none; 14 } 15 </style> 16 </head> 17 <body> 18 <main style="height: 100vh; display: flex; align-items: center; justify-content: center"> 19 <article style="max-width: 510px; text-align: center"> 20 <div class="error-icon"></div> 21 <h1>Access Denied</h1> 22 <p>You are not authorized to access the admin dashboard. Only approved GitHub users can access this area.</p> 23 <p>If you believe this is an error, please contact the system administrator to have your GitHub username added to the allowlist.</p> 24 <p> 25 <a href="/" class="button">Return to Home</a> 26 </p> 27 </article> 28 </main> 29 </body> 30</html>