From aa955c22ae18d55667006acd222dbc79e39a8b25 Mon Sep 17 00:00:00 2001 From: Sashi20 Date: Tue, 21 Aug 2018 16:31:05 +0530 Subject: Initial commit --- static/website/templates/registration/signup.html | 39 +++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 static/website/templates/registration/signup.html (limited to 'static/website/templates/registration/signup.html') diff --git a/static/website/templates/registration/signup.html b/static/website/templates/registration/signup.html new file mode 100644 index 0000000..0094401 --- /dev/null +++ b/static/website/templates/registration/signup.html @@ -0,0 +1,39 @@ + +{% load static %} + + +{% include 'header.html' %} + +
+ + {% include 'navbar.html' %} + {% block content %} +
+
+
+ {% if user.is_authenticated %} + Hi {{ user.username }}! +{% else %} +

You are not logged in !!!!!

+{% endif %} +

Sign up

+
+ {% csrf_token %} + {{ form.as_p }} + +
+ + +
+ + + +
+ +
+ {% endblock %} + + + {% include 'footer.html' %} + + -- cgit