14 lines
428 B
HTML
14 lines
428 B
HTML
{% extends "base.html" %}
|
|
{% block body %}
|
|
<h2>Login</h2>
|
|
{% if error %}<p class=error><strong>Error:</strong> {{ error }}{% endif %}
|
|
<form action="{{ url_for('login') }}" method="POST">
|
|
<dl>
|
|
<dt>Username or email:
|
|
<dd><input type="text" name="username">
|
|
<dt>Password:
|
|
<dd><input type="password" name="password">
|
|
<dd><input type="submit" value="Login">
|
|
</dl>
|
|
</form>
|
|
{% endblock %}
|