Fixed venv

This commit is contained in:
klein panic
2024-10-01 23:23:26 -04:00
parent 714c1fbe33
commit d01d5e3b3a
2986 changed files with 41 additions and 658734 deletions

13
templates/error.html Normal file
View File

@@ -0,0 +1,13 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Error</title>
</head>
<body>
<h1>An error occurred</h1>
<p>{{ error_message }}</p>
<a href="/">Go back to the main page</a>
</body>
</html>

11
templates/lockout.html Normal file
View File

@@ -0,0 +1,11 @@
<!-- templates/lockout.html -->
<!DOCTYPE html>
<html>
<head>
<title>Account Locked Out</title>
</head>
<body>
<h1>You have been locked out due to too many failed login attempts.</h1>
<p>If you believe this is an error, please contact the administrator.</p>
</body>
</html>