mirror of
https://framagit.org/la-chariotte/la-chariotte.git
synced 2025-05-08 06:41:51 +02:00
13 lines
No EOL
235 B
HTML
13 lines
No EOL
235 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>
|
|
</form>
|
|
|
|
{% endblock %} |