This repository has been archived on 2023-02-21. You can view files and clone it, but cannot push or open issues or pull requests.
polynum/polynum/templates/login.html

27 lines
583 B
HTML

{% extends "base.html" %}
{% block content %}
<div class="hero-unit">
{% if form.errors %}
<p>Utilisateur inconnu, ou mauvais mot de passe... Recommancez.</p>
{% endif %}
<form method="post">
{% csrf_token %}
<table>
<tr>
<td>{{ form.username.label_tag }}</td> <td>{{ form.username }}</td>
</tr>
<tr>
<td>{{ form.password.label_tag }}</td> <td>{{ form.password }}</td>
</tr>
</table>
<input type="submit" value="Connexion" />
<input type="hidden" name="next" value="{% if next %}{{ next }}{% else %}/{% endif %}">
</form>
</div>
{% endblock %}