charasheet/src/common/templates/django_registration/registration_form.html

11 lines
300 B
HTML

{% extends "common/base.html" %}
{% block content %}
<h1>Inscription</h1>
<form action="{% url "django_registration_register" %}" method="post">
{{ form.as_p }}
{% csrf_token %}
<button type="submit" class="btn btn-primary">Submit</button>
</form>
{% endblock %}