From 1fb3d381e832d5c5871c6cb2fd8b2c1ae3dbd029 Mon Sep 17 00:00:00 2001 From: Sashi20 Date: Thu, 20 Feb 2020 12:58:59 +0530 Subject: Add user registration, login and abstract submission interfaces --- arduino_blog/templates/activation-status.html | 64 +++++++++++++++++++++++++++ 1 file changed, 64 insertions(+) create mode 100644 arduino_blog/templates/activation-status.html (limited to 'arduino_blog/templates/activation-status.html') diff --git a/arduino_blog/templates/activation-status.html b/arduino_blog/templates/activation-status.html new file mode 100644 index 0000000..a9764cb --- /dev/null +++ b/arduino_blog/templates/activation-status.html @@ -0,0 +1,64 @@ +{% extends "base.html" %} + +{% block css%} + +{% endblock %} +{% block content %} +{% if success %} +
+ + +
+{% else %} + {% if msg %} +
+ +
+
+ {% csrf_token %} +
+ Enter Email Address for verification:

+ +
+
+ {% endif %} +{% endif %} +
+{% if activation_msg %} +
+ + +
+{% endif %} + +{% if email_err_msg %} +
+ +
+
+ {% csrf_token %} +
+ + + + + + + + + +
Enter Username:
Enter New Email Address:
+
+ +
+
+{% endif %} +{% endblock content %} -- cgit