Create login.html

This commit is contained in:
2024-10-09 21:14:02 +01:00
committed by GitHub
parent 9b703de932
commit add0decdfb

31
templates/login.html Normal file
View File

@@ -0,0 +1,31 @@
<!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>
<link rel="stylesheet" href="/static/css/styles.css">
</head>
<body>
<center>
<h2>Admin Login</h2>
<form method="POST" action="/login">
<table>
<tr>
<td>Username:</td>
<td><input type="text" name="username" required></td>
</tr>
<tr>
<td>Password:</td>
<td><input type="password" name="password" required></td>
</tr>
<tr>
<td colspan="2" align="center">
<input type="submit" value="Login" class="button">
</td>
</tr>
</table>
</form>
</center>
</body>
</html>