25 lines
633 B
HTML
25 lines
633 B
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
<title>Admin Login</title>
|
||
|
</head>
|
||
|
<body>
|
||
|
<h1>Admin Login</h1>
|
||
|
{% with messages = get_flashed_messages() %}
|
||
|
{% if messages %}
|
||
|
<ul>
|
||
|
{% for message in messages %}
|
||
|
<li>{{ message }}</li>
|
||
|
{% endfor %}
|
||
|
</ul>
|
||
|
{% endif %}
|
||
|
{% endwith %}
|
||
|
<form method="POST">
|
||
|
<input type="password" name="password" required>
|
||
|
<input type="submit" value="Login">
|
||
|
</form>
|
||
|
</body>
|
||
|
</html>
|