partirdezero/templates/users/register.html
2025-09-12 11:07:53 +02:00

11 lines
No EOL
330 B
HTML

{% extends 'layout.html' %}
{% block content %}
<section class="form-section">
<h2>Register</h2>
<form method="post" class="login-form">
{% csrf_token %}
{{ form.as_p }}
<button type="submit" class="btn-submit">Register</button>
</form>
</section>
{% endblock %}