BirdQuizz/templates/auth/login.html

22 lines
518 B
HTML
Raw Normal View History

2022-05-19 11:07:34 +02:00
{% extends "base.html" %}
{% block content %}
{% if message is defined %}
<p class="message">
{{ message }}
</p>
{% endif %}
<form action="/login" method="POST">
2022-05-26 13:58:46 +02:00
<label for="username">{{ _('Username') }}</label>
2022-05-19 11:07:34 +02:00
<input type="text" name="username" id="username">
2022-05-26 13:58:46 +02:00
<label for="password">{{ _('Password') }}</label>
2022-05-19 11:07:34 +02:00
<input type="password" name="password" id="password">
2022-05-26 13:58:46 +02:00
<input type="submit" value="{{ _('Login') }}">
2022-05-19 11:07:34 +02:00
</form>
2022-05-26 13:58:46 +02:00
<a href="/signup">{{ _('Sign up') }}</a>
2022-05-19 11:07:34 +02:00
{% endblock %}