diff options
Diffstat (limited to 'templates/registration')
-rw-r--r-- | templates/registration/activate.html | 4 | ||||
-rw-r--r-- | templates/registration/activation_email.txt | 9 | ||||
-rw-r--r-- | templates/registration/activation_email_subject.txt | 1 | ||||
-rw-r--r-- | templates/registration/logged_out.html | 12 | ||||
-rw-r--r-- | templates/registration/login.html | 8 | ||||
-rw-r--r-- | templates/registration/logout.html | 6 | ||||
-rw-r--r-- | templates/registration/password_change_done.html | 14 | ||||
-rw-r--r-- | templates/registration/password_change_form.html | 26 | ||||
-rw-r--r-- | templates/registration/password_reset_complete.html | 16 | ||||
-rw-r--r-- | templates/registration/password_reset_confirm.html | 32 | ||||
-rw-r--r-- | templates/registration/password_reset_done.html | 14 | ||||
-rw-r--r-- | templates/registration/password_reset_email.html | 15 | ||||
-rw-r--r-- | templates/registration/password_reset_form.html | 19 | ||||
-rw-r--r-- | templates/registration/registration_complete.html | 4 | ||||
-rw-r--r-- | templates/registration/registration_form.html | 7 |
15 files changed, 0 insertions, 187 deletions
diff --git a/templates/registration/activate.html b/templates/registration/activate.html deleted file mode 100644 index 27181d5..0000000 --- a/templates/registration/activate.html +++ /dev/null @@ -1,4 +0,0 @@ -{% extends 'base.html' %} -{% block content %} -Your account has been successfully activated. -{% endblock %} diff --git a/templates/registration/activation_email.txt b/templates/registration/activation_email.txt deleted file mode 100644 index dfc5216..0000000 --- a/templates/registration/activation_email.txt +++ /dev/null @@ -1,9 +0,0 @@ -Welcome to PyTasks: - -Click on the following link -http://{{site}}/accounts/activate/{{activation_key}} -and activate your account. -Note that the account has to activated within {{expiration_days}} days - -Regards, -PyTasks Team diff --git a/templates/registration/activation_email_subject.txt b/templates/registration/activation_email_subject.txt deleted file mode 100644 index c73db7e..0000000 --- a/templates/registration/activation_email_subject.txt +++ /dev/null @@ -1 +0,0 @@ -Welcome to PyTasks! diff --git a/templates/registration/logged_out.html b/templates/registration/logged_out.html deleted file mode 100644 index 9b37497..0000000 --- a/templates/registration/logged_out.html +++ /dev/null @@ -1,12 +0,0 @@ -{% extends "base.html" %} -{% load i18n %} - -{% block breadcrumbs %}<div class="breadcrumbs"><a href="../">{% trans 'Home' %}</a></div>{% endblock %} - -{% block content %} - -<p>{% trans "Thanks for spending some quality time with the Web site today." %}</p> - -<p><a href="../">{% trans 'Log in again' %}</a></p> - -{% endblock %} diff --git a/templates/registration/login.html b/templates/registration/login.html deleted file mode 100644 index b2e60d6..0000000 --- a/templates/registration/login.html +++ /dev/null @@ -1,8 +0,0 @@ -{% extends 'base.html' %} -{% block content %} -<form action="/accounts/login/" method="post"> -{{ form.as_p }} -<input type="submit" value="Login" /> -</form> -<a href="/accounts/password/reset">Forgot password?</a> -{% endblock %} diff --git a/templates/registration/logout.html b/templates/registration/logout.html deleted file mode 100644 index 480adfe..0000000 --- a/templates/registration/logout.html +++ /dev/null @@ -1,6 +0,0 @@ -{% extends 'base.html' %} -{% block content %} -You have successfully logged out of PyTasks. -<br><br> -<a href="/">Click here</a> to go back to PyTask Homepage -{% endblock %} diff --git a/templates/registration/password_change_done.html b/templates/registration/password_change_done.html deleted file mode 100644 index db1484f..0000000 --- a/templates/registration/password_change_done.html +++ /dev/null @@ -1,14 +0,0 @@ -{% extends "base.html" %} -{% load i18n %} -{% block userlinks %}{% url django-admindocs-docroot as docsroot %}{% if docsroot %}<a href="{{ docsroot }}">{% trans 'Documentation' %}</a> / {% endif %}{% trans 'Change password' %} / <a href="../../logout/">{% trans 'Log out' %}</a>{% endblock %} -{% block breadcrumbs %}<div class="breadcrumbs"><a href="../../">{% trans 'Home' %}</a> › {% trans 'Password change' %}</div>{% endblock %} - -{% block title %}{% trans 'Password change successful' %}{% endblock %} - -{% block content %} - -<h1>{% trans 'Password change successful' %}</h1> - -<p>{% trans 'Your password was changed.' %}</p> - -{% endblock %} diff --git a/templates/registration/password_change_form.html b/templates/registration/password_change_form.html deleted file mode 100644 index 71f221c..0000000 --- a/templates/registration/password_change_form.html +++ /dev/null @@ -1,26 +0,0 @@ -{% extends "base.html" %} -{% load i18n %} -{% block userlinks %}{% url django-admindocs-docroot as docsroot %}{% if docsroot %}<a href="{{ docsroot }}">{% trans 'Documentation' %}</a> / {% endif %} {% trans 'Change password' %} / <a href="../logout/">{% trans 'Log out' %}</a>{% endblock %} -{% block breadcrumbs %}<div class="breadcrumbs"><a href="../">{% trans 'Home' %}</a> › {% trans 'Password change' %}</div>{% endblock %} - -{% block title %}{% trans 'Password change' %}{% endblock %} - -{% block content %} - -<h1>{% trans 'Password change' %}</h1> - -<p>{% trans "Please enter your old password, for security's sake, and then enter your new password twice so we can verify you typed it in correctly." %}</p> - -<form action="" method="post"> - -{{ form.old_password.errors }} -<p class="aligned wide"><label for="id_old_password">{% trans 'Old password:' %}</label>{{ form.old_password }}</p> -{{ form.new_password1.errors }} -<p class="aligned wide"><label for="id_new_password1">{% trans 'New password:' %}</label>{{ form.new_password1 }}</p> -{{ form.new_password2.errors }} -<p class="aligned wide"><label for="id_new_password2">{% trans 'Confirm password:' %}</label>{{ form.new_password2 }}</p> - -<p><input type="submit" value="{% trans 'Change my password' %}" /></p> -</form> - -{% endblock %} diff --git a/templates/registration/password_reset_complete.html b/templates/registration/password_reset_complete.html deleted file mode 100644 index ee66d81..0000000 --- a/templates/registration/password_reset_complete.html +++ /dev/null @@ -1,16 +0,0 @@ -{% extends "base.html" %} -{% load i18n %} - -{% block breadcrumbs %}<div class="breadcrumbs"><a href="../../">{% trans 'Home' %}</a> › {% trans 'Password reset' %}</div>{% endblock %} - -{% block title %}{% trans 'Password reset complete' %}{% endblock %} - -{% block content %} - -<h1>{% trans 'Password reset complete' %}</h1> - -<p>{% trans "Your password has been set. You may go ahead and log in now." %}</p> - -<p><a href="{{ login_url }}">{% trans 'Log in' %}</a></p> - -{% endblock %} diff --git a/templates/registration/password_reset_confirm.html b/templates/registration/password_reset_confirm.html deleted file mode 100644 index b581a7f..0000000 --- a/templates/registration/password_reset_confirm.html +++ /dev/null @@ -1,32 +0,0 @@ -{% extends "base.html" %} -{% load i18n %} - -{% block breadcrumbs %}<div class="breadcrumbs"><a href="../">{% trans 'Home' %}</a> › {% trans 'Password reset confirmation' %}</div>{% endblock %} - -{% block title %}{% trans 'Password reset' %}{% endblock %} - -{% block content %} - -{% if validlink %} - -<h1>{% trans 'Enter new password' %}</h1> - -<p>{% trans "Please enter your new password twice so we can verify you typed it in correctly." %}</p> - -<form action="" method="post"> -{{ form.new_password1.errors }} -<p class="aligned wide"><label for="id_new_password1">{% trans 'New password:' %}</label>{{ form.new_password1 }}</p> -{{ form.new_password2.errors }} -<p class="aligned wide"><label for="id_new_password2">{% trans 'Confirm password:' %}</label>{{ form.new_password2 }}</p> -<p><input type="submit" value="{% trans 'Change my password' %}" /></p> -</form> - -{% else %} - -<h1>{% trans 'Password reset unsuccessful' %}</h1> - -<p>{% trans "The password reset link was invalid, possibly because it has already been used. Please request a new password reset." %}</p> - -{% endif %} - -{% endblock %} diff --git a/templates/registration/password_reset_done.html b/templates/registration/password_reset_done.html deleted file mode 100644 index 8da70e9..0000000 --- a/templates/registration/password_reset_done.html +++ /dev/null @@ -1,14 +0,0 @@ -{% extends "base.html" %} -{% load i18n %} - -{% block breadcrumbs %}<div class="breadcrumbs"><a href="../">{% trans 'Home' %}</a> › {% trans 'Password reset' %}</div>{% endblock %} - -{% block title %}{% trans 'Password reset successful' %}{% endblock %} - -{% block content %} - -<h1>{% trans 'Password reset successful' %}</h1> - -<p>{% trans "We've e-mailed you instructions for setting your password to the e-mail address you submitted. You should be receiving it shortly." %}</p> - -{% endblock %} diff --git a/templates/registration/password_reset_email.html b/templates/registration/password_reset_email.html deleted file mode 100644 index 4e4bd6d..0000000 --- a/templates/registration/password_reset_email.html +++ /dev/null @@ -1,15 +0,0 @@ -{% load i18n %}{% autoescape off %} -{% trans "You're receiving this e-mail because you requested a password reset" %} -{% blocktrans %}for your user account at {{ site_name }}{% endblocktrans %}. - -{% trans "Please go to the following page and choose a new password:" %} -{% block reset_link %} -{{ protocol }}://{{ domain }}{% url django.contrib.auth.views.password_reset_confirm uidb36=uid, token=token %} -{% endblock %} -{% trans "Your username, in case you've forgotten:" %} {{ user.username }} - -{% trans "Thanks for using our site!" %} - -{% blocktrans %}The {{ site_name }} team{% endblocktrans %} - -{% endautoescape %} diff --git a/templates/registration/password_reset_form.html b/templates/registration/password_reset_form.html deleted file mode 100644 index 38eec4c..0000000 --- a/templates/registration/password_reset_form.html +++ /dev/null @@ -1,19 +0,0 @@ -{% extends "base.html" %} -{% load i18n %} - -{% block breadcrumbs %}<div class="breadcrumbs"><a href="../">{% trans 'Home' %}</a> › {% trans 'Password reset' %}</div>{% endblock %} - -{% block title %}{% trans "Password reset" %}{% endblock %} - -{% block content %} - -<h1>{% trans "Password reset" %}</h1> - -<p>{% trans "Forgotten your password? Enter your e-mail address below, and we'll e-mail instructions for setting a new one." %}</p> - -<form action="" method="post"> -{{ form.email.errors }} -<p><label for="id_email">{% trans 'E-mail address:' %}</label> {{ form.email }} <input type="submit" value="{% trans 'Reset my password' %}" /></p> -</form> - -{% endblock %} diff --git a/templates/registration/registration_complete.html b/templates/registration/registration_complete.html deleted file mode 100644 index 53e85bc..0000000 --- a/templates/registration/registration_complete.html +++ /dev/null @@ -1,4 +0,0 @@ -{% extends 'base.html' %} -{% block content %} -Please check your email for instructions on activating your account. -{% endblock %} diff --git a/templates/registration/registration_form.html b/templates/registration/registration_form.html deleted file mode 100644 index ed116d3..0000000 --- a/templates/registration/registration_form.html +++ /dev/null @@ -1,7 +0,0 @@ -{% extends 'base.html' %} -{% block content %} -<form action="/accounts/register/" method="post"> -{{ form.as_p }} -<input type="submit" value="Submit" /> -</form> -{% endblock %} |