18 lines
596 B
HTML
18 lines
596 B
HTML
{% extends 'base.html' %}
|
|
|
|
{% block content %}
|
|
<article>
|
|
<h1>Sign up</h1>
|
|
|
|
<form method="post" action="{% url 'account_signup' %}">
|
|
{% csrf_token %}
|
|
{{ form.as_p }}
|
|
<p><small>By clicking you agree to the <a href="{% url 'storefront:terms-and-conditions' %}">Terms and conditions</a> and <a href="{% url 'storefront:privacy-policy' %}">Privacy Policy</a>.</small></p>
|
|
<p>
|
|
<input type="submit" value="Create account" class="btn">
|
|
<input type="hidden" name="next" value="{{ next }}">
|
|
</p>
|
|
</form>
|
|
</article>
|
|
{% endblock %}
|