13 lines
302 B
HTML
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 %}
|