musik/base/templates/registration/login.html

10 lines
229 B
HTML
Raw Normal View History

2025-06-13 15:51:32 +02:00
{% extends "base.html" %}
{% load form %}
{% block content %}
<h1>Connexion</h1>
<p>
<a href="{% url "signup" %}">Créer un compte</a>
</p>
{% form form submit="Se connecter" %}
{% endblock content %}