mirror of
https://framagit.org/la-chariotte/la-chariotte.git
synced 2025-05-06 22:01:49 +02:00
19 lines
No EOL
518 B
HTML
19 lines
No EOL
518 B
HTML
{% extends 'base.html' %}
|
|
|
|
{% block title %}Connexion{% endblock %}
|
|
|
|
{% block content %}
|
|
<p class="desktop-hidden mobile-content-title">
|
|
{% block content_title %}Connexion{% endblock %}
|
|
</p>
|
|
<form method="post">
|
|
{% csrf_token %}
|
|
{{ form.as_p }}
|
|
<a href="{% url 'accounts:password_reset' %}">Mot de passe oublié ?</a>
|
|
<div class="buttons">
|
|
<button class="button is-primary" type="submit">Se connecter</button>
|
|
<a href="{% url 'accounts:signup' %}">Créer un compte</a>
|
|
</div>
|
|
</form>
|
|
|
|
{% endblock %} |