Files
demo_sites/templates/registration/signup.html
2026-05-17 18:29:30 -05:00

13 lines
302 B
HTML

{% extends "base.html" %}
{% block title %}Sign up{% endblock %}
{% block content %}
<section class="card form-card">
<h1>Create account</h1>
<form method="post">
{% csrf_token %}
{{ form.as_p }}
<button class="button" type="submit">Sign up</button>
</form>
</section>
{% endblock %}