'login.html' toevoegen

This commit is contained in:
2023-04-26 18:57:12 +02:00
parent eec9be1b87
commit c28b9dc63b

25
login.html Normal file
View File

@ -0,0 +1,25 @@
<!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>