diff --git a/templates/account/signup.html b/templates/account/signup.html new file mode 100644 index 00000000..e92ac08e --- /dev/null +++ b/templates/account/signup.html @@ -0,0 +1,21 @@ +{% extends "base.html" %} + +{% load i18n %} + +{% block head_title %}{% trans "Signup" %}{% endblock %} + +{% block content %} +

{% trans "Sign Up" %}

+ +

{% blocktrans %}Already have an account? Then please sign in.{% endblocktrans %}

+ +
+ {% csrf_token %} + {{ form.as_p }} + {% if redirect_field_value %} + + {% endif %} + +
+ +{% endblock %}