19 lines
451 B
HTML
19 lines
451 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Login</title>
|
|
</head>
|
|
<body>
|
|
<h1>Login</h1>
|
|
<form method="POST" action="{{ url_for('login') }}">
|
|
<label for="username">Username:</label>
|
|
<input type="text" name="username" required>
|
|
<br>
|
|
<label for="password">Password:</label>
|
|
<input type="password" name="password" required>
|
|
<br>
|
|
<button type="submit">Login</button>
|
|
</form>
|
|
</body>
|
|
</html>
|