10 lines
232 B
HTML
10 lines
232 B
HTML
{% extends "components/base.html" %}
|
|
|
|
{% block content %}
|
|
<h2>Sign Up</h2>
|
|
<form method="post">
|
|
{% csrf_token %}
|
|
{{ form.as_p }}
|
|
<button type="submit" class="btn btn-primary">Sign Up</button>
|
|
</form>
|
|
{% endblock %} |