From 5807eb51f9282fb2ea93321d7d6adfb2c44e6bd1 Mon Sep 17 00:00:00 2001 From: Lacey Williams Henschel Date: Wed, 30 Nov 2022 10:58:39 -0800 Subject: [PATCH] :lipstick: Have signup page use our templates --- templates/account/signup.html | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 templates/account/signup.html 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 %}