coriplus/templates/login.html

15 lines
428 B
HTML
Raw Normal View History

2019-05-01 15:33:28 +02:00
{% extends "base.html" %}
{% block body %}
<h2>Login</h2>
{% if error %}<p class=error><strong>Error:</strong> {{ error }}{% endif %}
2019-10-11 12:57:40 +02:00
<form action="{{ url_for('login') }}" method="POST">
2019-05-01 15:33:28 +02:00
<dl>
2019-10-11 12:57:40 +02:00
<dt>Username or email:
<dd><input type="text" name="username">
2019-05-01 15:33:28 +02:00
<dt>Password:
2019-10-11 12:57:40 +02:00
<dd><input type="password" name="password">
<dd><input type="submit" value="Login">
2019-05-01 15:33:28 +02:00
</dl>
</form>
{% endblock %}