From 33727870dfbe751b089b55d37bfbe8e4dd351ab0 Mon Sep 17 00:00:00 2001 From: LV-426 Date: Sun, 1 Feb 2015 16:38:17 +0200 Subject: user_signup template --- res/templates/user_signup.html | 212 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 212 insertions(+) create mode 100644 res/templates/user_signup.html diff --git a/res/templates/user_signup.html b/res/templates/user_signup.html new file mode 100644 index 00000000..b210a3ea --- /dev/null +++ b/res/templates/user_signup.html @@ -0,0 +1,212 @@ +{% extends "base.html" %} {% block title %}Rhizi - User Signup{% +endblock %} {% block head %} {{ super() }} + + + + + +{% endblock %} {% block content %} +
+

Sign up

+ {% if 'activation_success' == state %} +
+

+ Congratulations! your account has been activated.
Please + head over to the login page to access + your account. +

+
+ {% elif 'activation_failure' == state %} +
+

{{ html_str__err }}

+
+ {% else %} + + + + + + +
+
Submit
+
+
+ {% endif %} +
+{% endblock %} -- cgit v1.3.1