mirror of
https://framagit.org/la-chariotte/la-chariotte.git
synced 2025-05-04 04:41:52 +02:00
14 lines
No EOL
301 B
HTML
14 lines
No EOL
301 B
HTML
{% extends 'base.html' %}
|
|
|
|
{% block title %}Connexion{% endblock %}
|
|
|
|
{% block content %}
|
|
<h2>Connexion</h2>
|
|
<form method="post">
|
|
{% csrf_token %}
|
|
{{ form.as_p }}
|
|
<button type="submit">Se connecter</button>
|
|
<a href="{% url 'accounts:signup' %}">Créer un compte</button>
|
|
</form>
|
|
|
|
{% endblock %} |