18 lines
607 B
HTML
18 lines
607 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Login</title>
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
|
|
</head>
|
|
<body>
|
|
<div class="container" style="max-width: 400px;">
|
|
<h2>Admin Login</h2>
|
|
|
|
<form method="POST">
|
|
<input name="username" placeholder="Username" required style="width:100%; margin-bottom:10px;">
|
|
<input name="password" type="password" placeholder="Password" required style="width:100%; margin-bottom:10px;">
|
|
<button type="submit" style="width:100%;">Login</button>
|
|
</form>
|
|
</div>
|
|
</body>
|
|
</html> |