From 64ab50bb06eb01b4364bfcdaf45ae926b6670612 Mon Sep 17 00:00:00 2001 From: Sashi20 Date: Fri, 14 Sep 2018 15:17:21 +0530 Subject: Enabled registration and login interface, activation emails, paper submission interface --- static/website/templates/activation.html | 48 ++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 static/website/templates/activation.html (limited to 'static/website/templates/activation.html') diff --git a/static/website/templates/activation.html b/static/website/templates/activation.html new file mode 100644 index 0000000..b5d8052 --- /dev/null +++ b/static/website/templates/activation.html @@ -0,0 +1,48 @@ +{% extends "base.html" %} +{% load static %} +{% load widget_tweaks %} + +{% csrf_token %} +{% block content %} + {% if status == '2' %} +
+
+

Your email is already verified, Please view your profile here

+ +
+
+ {% elif status == '1' %} + +
+
+

Your activation has expired please register again

+
+
+ {% elif status == '0' %} +
+
+

Your account has been activated. Please view your profile here

+ +
+
+ {% else %} + + +
+
+

Activation Awaiting

+

The Activation Link has been sent to your email. The link expires in 24hours from the date of registration. You will be logged out automatically.

+
+
+ {% endif %} +{% endblock %} -- cgit