48 lines
1.1 KiB
HTML
48 lines
1.1 KiB
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>
|
|
<style>
|
|
body {
|
|
font-family: Arial, sans-serif;
|
|
margin: 40px;
|
|
}
|
|
form {
|
|
max-width: 300px;
|
|
margin: auto;
|
|
}
|
|
input {
|
|
display: block;
|
|
margin: 10px 0;
|
|
padding: 8px;
|
|
width: 100%;
|
|
}
|
|
button {
|
|
padding: 10px;
|
|
background: #007bff;
|
|
color: white;
|
|
border: none;
|
|
cursor: pointer;
|
|
}
|
|
.flash {
|
|
color: red;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1>Admin Login</h1>
|
|
{% with messages = get_flashed_messages() %} {% if messages %}
|
|
<div class="flash">
|
|
{% for message in messages %} {{ message }} {% endfor %}
|
|
</div>
|
|
{% endif %} {% endwith %}
|
|
<form method="post">
|
|
<input type="text" name="username" placeholder="Username" required />
|
|
<input type="password" name="password" placeholder="Password" required />
|
|
<button type="submit">Login</button>
|
|
</form>
|
|
</body>
|
|
</html>
|