26 lines
524 B
HTML
26 lines
524 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<title>Login</title>
|
|
</head>
|
|
<body>
|
|
<h1>Login</h1>
|
|
{% if error %}
|
|
<p>{{ error }}</p>
|
|
{% endif %}
|
|
<form method="post">
|
|
<p>
|
|
<label for="username">Username:</label>
|
|
<input type="text" name="username" required>
|
|
</p>
|
|
<p>
|
|
<label for="password">Password:</label>
|
|
<input type="password" name="password" required>
|
|
</p>
|
|
<p>
|
|
<button type="submit">Login</button>
|
|
</p>
|
|
</form>
|
|
</body>
|
|
</html>
|