17 lines
458 B
HTML
17 lines
458 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block content %}
|
|
<h1>Login</h1>
|
|
<form method="POST" action="{{ url_for('login') }}">
|
|
<label for="username">Username:</label>
|
|
<input type="text" id="username" name="username" required>
|
|
|
|
<label for="password">Password:</label>
|
|
<input type="password" id="password" name="password" required>
|
|
|
|
<button type="submit">Login</button>
|
|
</form>
|
|
{% if error %}
|
|
<p class="error">{{ error }}</p>
|
|
{% endif %}
|
|
{% endblock %} |