From 8db6fd363b27eab9d538173f07f90844eb5a7d0d Mon Sep 17 00:00:00 2001 From: adityacp Date: Fri, 7 Apr 2017 15:59:41 +0530 Subject: Add template to display account activation status of user --- yaksh/templates/yaksh/activation_status.html | 47 ++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 yaksh/templates/yaksh/activation_status.html (limited to 'yaksh') diff --git a/yaksh/templates/yaksh/activation_status.html b/yaksh/templates/yaksh/activation_status.html new file mode 100644 index 0000000..4ffd50e --- /dev/null +++ b/yaksh/templates/yaksh/activation_status.html @@ -0,0 +1,47 @@ +{% extends "base.html" %} + +{% block pagetitle %} Yaksh Account Activation {% endblock %} +{% block title %} Yaksh Account Activation {% endblock %} +{% block content %} +{% if success %} +
+ + Click Here to Login +
+{% else %} + {% if msg %} +
+ +
+
+ {% csrf_token %} +
+ Enter Email Address for verification:

+ + +
+
+ {% endif %} +{% endif %} +
+{% if new_activation_msg %} +
+ + Click Here to Login
+{% endif %} +{% if activation_msg %} +
+ + Click Here to Login
+{% endif %} + +{% endblock content %} \ No newline at end of file -- cgit