From 42f0febd38f0427f33994b153c1a1d937afb609c Mon Sep 17 00:00:00 2001 From: Navan Chauhan Date: Thu, 3 Jun 2021 23:45:17 +0530 Subject: fixed sign up form --- app/templates/auth/signup.html | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 app/templates/auth/signup.html (limited to 'app/templates') diff --git a/app/templates/auth/signup.html b/app/templates/auth/signup.html new file mode 100644 index 0000000..e0cae82 --- /dev/null +++ b/app/templates/auth/signup.html @@ -0,0 +1,38 @@ +{% extends "base.html" %} + +{% block title %}Sign Up{% endblock %} + +{% block head %} + {{ super() }} +{% endblock %} + +{% block content %} +
+

Sign Up

+

Register your account.

+
+ {% include 'flash_messages.html' %} + {{ form.csrf_token }} + {% from "_formhelpers.html" import render_field %} +
+
+
+ {{ render_field(form.first_name) }} +
+
+ {{ render_field(form.last_name) }} +
+
+
+
+ {{ render_field(form.email) }} +
+
+ {{ render_field(form.password) }} +
+
+ +
+
+
+{% endblock %} \ No newline at end of file -- cgit v1.2.3