From fde8470c5e47434df8c854bd3135763062fada12 Mon Sep 17 00:00:00 2001 From: prashantsinalkar Date: Thu, 5 Mar 2020 19:28:24 +0530 Subject: fixed file structure and added forgot passowrd link --- .../static/admin/templates/user-register.html | 108 +++++++++++++++++++++ 1 file changed, 108 insertions(+) create mode 100644 arduino_blog/static/admin/templates/user-register.html (limited to 'arduino_blog/static/admin/templates/user-register.html') diff --git a/arduino_blog/static/admin/templates/user-register.html b/arduino_blog/static/admin/templates/user-register.html new file mode 100644 index 0000000..cfa38d9 --- /dev/null +++ b/arduino_blog/static/admin/templates/user-register.html @@ -0,0 +1,108 @@ +{% extends 'website/templates/base.html' %} +{% load widget_tweaks %} +{% load static %} +{% block title %}Register{% endblock %} +{% block cssblock %} + +{% endblock %} +{% block search %} +{% endblock %} +{% block content %} + +
+

Register

+
+
+

The activation link of the account will be sent to the Email id provided.

+
+
{% csrf_token %} +
+
+
+ + {% render_field form.username class+="form-control username" tabindex="1" placeholder="Desired Username" %} +
+ {{ form.username.errors }} +
+
+
+
+
+ + {% render_field form.email class+="form-control email" tabindex="1" placeholder="Your Email" %} +
+ {{ form.email.errors }} +
+
+
+
+
+ + {% render_field form.password class+="form-control password" tabindex="1" placeholder="Enter password" %} +
+ {{ form.password.errors }} +
+
+
+
+
+ + {% render_field form.password_confirm class+="form-control password_confirm" tabindex="1" placeholder="Retype Password" %} +
+ {{ form.password_confirm.errors }} +
+
+
+
+
+ +
+
+
+
+ + +
+ +
+ + +
+


+
+
Already Registered?
+
Login
+
+ + +
+ + +{% endblock %} +{% block uncompressjsblock %} + +{% endblock %} + + -- cgit