Style Update
This commit is contained in:
@@ -1,6 +1,18 @@
|
||||
<form method="POST">
|
||||
<h2>Admin Login</h2>
|
||||
<input name="username" placeholder="Username" required>
|
||||
<input name="password" type="password" placeholder="Password" required>
|
||||
<button type="submit">Login</button>
|
||||
</form>
|
||||
<!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>
|
||||
Reference in New Issue
Block a user