13 lines
269 B
HTML
13 lines
269 B
HTML
|
<!-- templates/registration/signup.html -->
|
||
|
{% extends 'base.html' %}
|
||
|
|
||
|
{% block title %}Sign Up{% endblock %}
|
||
|
|
||
|
{% block content %}
|
||
|
<h2>Sign Up</h2>
|
||
|
<form method="post">
|
||
|
{% csrf_token %}
|
||
|
{{ form.as_p }}
|
||
|
<button type="submit">Sign Up</button>
|
||
|
</form>
|
||
|
{% endblock %}
|