summaryrefslogtreecommitdiff
path: root/gstudio/templates/registration
diff options
context:
space:
mode:
authorgnowgi <nagarjun@gnowledge.org>2012-03-15 16:19:20 +0530
committergnowgi <nagarjun@gnowledge.org>2012-03-15 16:19:20 +0530
commit7a4f561e851fdc7246d804c3abb6748b8a4199a6 (patch)
treed2afc3463fd49625a9be482012f5c3bfcf7c42b9 /gstudio/templates/registration
downloadgnowsys-7a4f561e851fdc7246d804c3abb6748b8a4199a6.tar.gz
master trunk of gnowsys-studio
Diffstat (limited to 'gstudio/templates/registration')
-rw-r--r--gstudio/templates/registration/activate.html18
-rw-r--r--gstudio/templates/registration/activation_email.txt6
-rw-r--r--gstudio/templates/registration/activation_email_subject.txt1
-rw-r--r--gstudio/templates/registration/login.html14
-rw-r--r--gstudio/templates/registration/logout.html7
-rw-r--r--gstudio/templates/registration/password_change_done.html6
-rw-r--r--gstudio/templates/registration/password_change_form.html10
-rw-r--r--gstudio/templates/registration/password_reset_complete.html10
-rw-r--r--gstudio/templates/registration/password_reset_confirm.html20
-rw-r--r--gstudio/templates/registration/password_reset_done.html6
-rw-r--r--gstudio/templates/registration/password_reset_email.html5
-rw-r--r--gstudio/templates/registration/password_reset_form.html10
-rw-r--r--gstudio/templates/registration/registration_complete.html6
-rw-r--r--gstudio/templates/registration/registration_form.html10
14 files changed, 129 insertions, 0 deletions
diff --git a/gstudio/templates/registration/activate.html b/gstudio/templates/registration/activate.html
new file mode 100644
index 0000000..e85121e
--- /dev/null
+++ b/gstudio/templates/registration/activate.html
@@ -0,0 +1,18 @@
+{% extends "base.html" %}
+{% load i18n %}
+
+{% block content %}
+
+{% if account %}
+
+<p>{% trans "Account successfully activated" %}</p>
+
+<p><a href="{% url auth_login %}">{% trans "Log in" %}</a></p>
+
+{% else %}
+
+<p>{% trans "Account activation failed" %}</p>
+
+{% endif %}
+
+{% endblock %}
diff --git a/gstudio/templates/registration/activation_email.txt b/gstudio/templates/registration/activation_email.txt
new file mode 100644
index 0000000..b300359
--- /dev/null
+++ b/gstudio/templates/registration/activation_email.txt
@@ -0,0 +1,6 @@
+{% load i18n %}
+{% trans "Activate account at" %} {{ site.name }}:
+
+http://{{ site.domain }}{% url registration_activate activation_key %}
+
+{% blocktrans %}Link is valid for {{ expiration_days }} days.{% endblocktrans %}
diff --git a/gstudio/templates/registration/activation_email_subject.txt b/gstudio/templates/registration/activation_email_subject.txt
new file mode 100644
index 0000000..24f477c
--- /dev/null
+++ b/gstudio/templates/registration/activation_email_subject.txt
@@ -0,0 +1 @@
+{% load i18n %}{% trans "Account activation on" %} {{ site.name }}
diff --git a/gstudio/templates/registration/login.html b/gstudio/templates/registration/login.html
new file mode 100644
index 0000000..4e0d763
--- /dev/null
+++ b/gstudio/templates/registration/login.html
@@ -0,0 +1,14 @@
+{% extends "base.html" %}
+{% load i18n %}
+
+{% block content %}
+<form method="post" action=".">
+{% csrf_token %} {{ form.as_p }}
+
+ <input type="submit" value="{% trans 'Log in' %}" />
+ <input type="hidden" name="next" value="{{ next }}" />
+</form>
+
+<p>{% trans "Forgot password" %}? <a href="{% url auth_password_reset %}">{% trans "Reset it" %}</a>!</p>
+<p>{% trans "Not member" %}? <a href="{% url registration_register %}">{% trans "Register" %}</a>!</p>
+{% endblock %}
diff --git a/gstudio/templates/registration/logout.html b/gstudio/templates/registration/logout.html
new file mode 100644
index 0000000..fe17eba
--- /dev/null
+++ b/gstudio/templates/registration/logout.html
@@ -0,0 +1,7 @@
+{% extends "base.html" %}
+{% load i18n %}
+
+{% block content %}
+<p>{% trans "Logged out" %}</p>
+ <a href="{{get_absoulute_url}}/accounts/login/">{% trans 'Login again' %}</a>
+{% endblock %}
diff --git a/gstudio/templates/registration/password_change_done.html b/gstudio/templates/registration/password_change_done.html
new file mode 100644
index 0000000..659be0a
--- /dev/null
+++ b/gstudio/templates/registration/password_change_done.html
@@ -0,0 +1,6 @@
+{% extends "base.html" %}
+{% load i18n %}
+
+{% block content %}
+<p>{% trans "Password changed" %}</p>
+{% endblock %}
diff --git a/gstudio/templates/registration/password_change_form.html b/gstudio/templates/registration/password_change_form.html
new file mode 100644
index 0000000..a640aa6
--- /dev/null
+++ b/gstudio/templates/registration/password_change_form.html
@@ -0,0 +1,10 @@
+{% extends "base.html" %}
+{% load i18n %}
+
+{% block content %}
+<form method="post" action=".">
+{% csrf_token %} {{ form.as_p }}
+
+ <input type="submit" value="{% trans 'Submit' %}" />
+</form>
+{% endblock %}
diff --git a/gstudio/templates/registration/password_reset_complete.html b/gstudio/templates/registration/password_reset_complete.html
new file mode 100644
index 0000000..ef3637c
--- /dev/null
+++ b/gstudio/templates/registration/password_reset_complete.html
@@ -0,0 +1,10 @@
+{% extends "base.html" %}
+{% load i18n %}
+
+{% block content %}
+
+<p>{% trans "Password reset successfully" %}</p>
+
+<p><a href="{% url auth_login %}">{% trans "Log in" %}</a></p>
+
+{% endblock %}
diff --git a/gstudio/templates/registration/password_reset_confirm.html b/gstudio/templates/registration/password_reset_confirm.html
new file mode 100644
index 0000000..3990f06
--- /dev/null
+++ b/gstudio/templates/registration/password_reset_confirm.html
@@ -0,0 +1,20 @@
+{% extends "base.html" %}
+{% load i18n %}
+
+{% block content %}
+
+{% if validlink %}
+
+<form method="post" action=".">
+{% csrf_token %} {{ form.as_p }}
+
+ <input type="submit" value="{% trans 'Submit' %}" />
+</form>
+
+{% else %}
+
+<p>{% trans "Password reset failed" %}</p>
+
+{% endif %}
+
+{% endblock %}
diff --git a/gstudio/templates/registration/password_reset_done.html b/gstudio/templates/registration/password_reset_done.html
new file mode 100644
index 0000000..6057ccb
--- /dev/null
+++ b/gstudio/templates/registration/password_reset_done.html
@@ -0,0 +1,6 @@
+{% extends "base.html" %}
+{% load i18n %}
+
+{% block content %}
+<p>{% trans "Email with password reset instructions has been sent." %}</p>
+{% endblock %}
diff --git a/gstudio/templates/registration/password_reset_email.html b/gstudio/templates/registration/password_reset_email.html
new file mode 100644
index 0000000..a55c869
--- /dev/null
+++ b/gstudio/templates/registration/password_reset_email.html
@@ -0,0 +1,5 @@
+{% load i18n %}
+{% blocktrans %}Reset password at {{ site_name }}{% endblocktrans %}:
+{% block reset_link %}
+{{ protocol }}://{{ domain }}{% url auth_password_reset_confirm uidb36=uid, token=token %}
+{% endblock %}
diff --git a/gstudio/templates/registration/password_reset_form.html b/gstudio/templates/registration/password_reset_form.html
new file mode 100644
index 0000000..a640aa6
--- /dev/null
+++ b/gstudio/templates/registration/password_reset_form.html
@@ -0,0 +1,10 @@
+{% extends "base.html" %}
+{% load i18n %}
+
+{% block content %}
+<form method="post" action=".">
+{% csrf_token %} {{ form.as_p }}
+
+ <input type="submit" value="{% trans 'Submit' %}" />
+</form>
+{% endblock %}
diff --git a/gstudio/templates/registration/registration_complete.html b/gstudio/templates/registration/registration_complete.html
new file mode 100644
index 0000000..3d3d950
--- /dev/null
+++ b/gstudio/templates/registration/registration_complete.html
@@ -0,0 +1,6 @@
+{% extends "base.html" %}
+{% load i18n %}
+
+{% block content %}
+<p>{% trans "You are now registered. Activation email sent." %}</p>
+{% endblock %}
diff --git a/gstudio/templates/registration/registration_form.html b/gstudio/templates/registration/registration_form.html
new file mode 100644
index 0000000..a640aa6
--- /dev/null
+++ b/gstudio/templates/registration/registration_form.html
@@ -0,0 +1,10 @@
+{% extends "base.html" %}
+{% load i18n %}
+
+{% block content %}
+<form method="post" action=".">
+{% csrf_token %} {{ form.as_p }}
+
+ <input type="submit" value="{% trans 'Submit' %}" />
+</form>
+{% endblock %}