Files
AVEX-Toner-Inventory-System/templates/login.html
Anthony Segura 6c8e869132 Style Update
2026-08-05 10:38:20 -05:00

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>