2022-01-23 22:34:16 +01:00
|
|
|
<!-- templates/registration/signup.html -->
|
|
|
|
{% extends 'base.html' %}
|
|
|
|
|
|
|
|
{% block title %}Sign Up{% endblock %}
|
|
|
|
|
|
|
|
{% block content %}
|
2022-01-30 21:43:10 +01:00
|
|
|
<h2>Sign Up</h2>
|
|
|
|
<form method="post">
|
|
|
|
{% csrf_token %}
|
|
|
|
{{ form.as_p }}
|
|
|
|
<button class="btn btn-light" type="submit">Sign Up</button>
|
|
|
|
<p></p>
|
|
|
|
<span style="white-space: nowrap">Already have an account?</span>
|
|
|
|
<a href="{% url 'login' %}">Back to login.</a>
|
|
|
|
</form>
|
2022-01-23 22:34:16 +01:00
|
|
|
{% endblock %}
|