diff --git a/pinaxcon/templates/account/delete.html b/pinaxcon/templates/account/delete.html new file mode 100644 index 0000000000000000000000000000000000000000..9f32de64d46217f6fd8316dd1fad458d507b6ae8 --- /dev/null +++ b/pinaxcon/templates/account/delete.html @@ -0,0 +1,19 @@ +{% extends "account/base.html" %} + +{% load i18n %} + +{% block body_class %}account account-delete{% endblock %} + +{% block head_title %}{% trans "Delete Account" %}{% endblock %} + +{% block content %} +

{% trans "Delete Account" %}

+ +

{% blocktrans %}If you go ahead and delete your account, your information will be expunged within {{ ACCOUNT_DELETION_EXPUNGE_HOURS }} hours.{% endblocktrans %}

+ +
+ {% csrf_token %} + +
+ +{% endblock %} diff --git a/pinaxcon/templates/account/email_confirm.html b/pinaxcon/templates/account/email_confirm.html new file mode 100644 index 0000000000000000000000000000000000000000..f1d187182aca1eae3af68e08fdc2406fce436081 --- /dev/null +++ b/pinaxcon/templates/account/email_confirm.html @@ -0,0 +1,20 @@ +{% extends "site_base.html" %} + +{% load i18n %} + +{% block head_title %}{% trans "Confirm Email" %}{% endblock %} + +{% block content %} +
+
+
+ {% trans "Confirm Email" %} +
+ {% csrf_token %} +

{% blocktrans with email=confirmation.email_address.email %}Confirm email address {{ email }}?{% endblocktrans %}

+ +
+
+
+
+{% endblock %} diff --git a/pinaxcon/templates/account/email_confirmation_sent.html b/pinaxcon/templates/account/email_confirmation_sent.html new file mode 100644 index 0000000000000000000000000000000000000000..0532ea164d42e499b75cc6d89fa47d1da168a992 --- /dev/null +++ b/pinaxcon/templates/account/email_confirmation_sent.html @@ -0,0 +1,12 @@ +{% extends "site_base.html" %} + +{% load i18n %} + +{% block head_title %}{% trans "Confirm your email address" %}{% endblock %} + +{% block content %} +

{% trans "Confirm your email address" %}

+ +

{% blocktrans %}We have sent you an email to {{ email }} for verification. Follow the link provided to finalize the signup process. If you do not receive it within a few minutes, contact us at {{ THEME_CONTACT_EMAIL }}.{% endblocktrans %}

+

{% trans "Go back" %}

+{% endblock %} diff --git a/pinaxcon/templates/account/email_confirmed.html b/pinaxcon/templates/account/email_confirmed.html new file mode 100644 index 0000000000000000000000000000000000000000..09823392dc8f07b32740f2c108a2a88c3adc0472 --- /dev/null +++ b/pinaxcon/templates/account/email_confirmed.html @@ -0,0 +1,10 @@ +{% extends "site_base.html" %} + +{% load i18n %} + +{% block head_title %}{% trans "Email confirmed" %}{% endblock %} + +{% block content %} +

{% trans "Email confirmed" %}

+

{% blocktrans with email=confirmation.email_address.email %}You have confirmed {{ email }}{% endblocktrans %}

+{% endblock %} diff --git a/pinaxcon/templates/account/logout.html b/pinaxcon/templates/account/logout.html new file mode 100644 index 0000000000000000000000000000000000000000..74eaf723f7a187593de5212fdb2871adb0a71ebe --- /dev/null +++ b/pinaxcon/templates/account/logout.html @@ -0,0 +1,20 @@ +{% extends "site_base.html" %} + +{% load i18n %} + +{% block head_title %}{% trans "Log out" %}{% endblock %} + +{% block content %} +
+
+
+ {% trans "Log out" %} +
+ {% csrf_token %} +

{% trans "Are you sure you want to log out?" %}

+ +
+
+
+
+{% endblock %} diff --git a/pinaxcon/templates/account/password_change.html b/pinaxcon/templates/account/password_change.html new file mode 100644 index 0000000000000000000000000000000000000000..9b8b9a799e78bff9dad7ac46fd4833eda1f5f09c --- /dev/null +++ b/pinaxcon/templates/account/password_change.html @@ -0,0 +1,23 @@ +{% extends "account/base.html" %} + +{% load i18n %} +{% load bootstrap %} + +{% block body_class %}account account-password{% endblock %} + +{% block head_title %}{% trans "Change password" %}{% endblock %} + +{% block content %} +
+
+
+ {% trans "Change password" %} +
+ {% csrf_token %} + {{ form|bootstrap }} + +
+
+
+
+{% endblock %} diff --git a/pinaxcon/templates/account/password_reset.html b/pinaxcon/templates/account/password_reset.html new file mode 100644 index 0000000000000000000000000000000000000000..f707d815673321ff710e4bd35e026c9140e3aeb0 --- /dev/null +++ b/pinaxcon/templates/account/password_reset.html @@ -0,0 +1,36 @@ +{% extends "site_base.html" %} + +{% load i18n %} +{% load bootstrap %} +{% load account_tags %} + +{% block head_title %}{% trans "Password reset" %}{% endblock %} + +{% user_display request.user as user_display %} + +{% block content %} +
+
+
+ {% trans "Password reset" %} +

{% trans "Forgotten your password? Enter your email address below, and we'll send you an email allowing you to reset it." %}

+
+
+ {% csrf_token %} + {{ form|bootstrap }} + +
+
+
+
+
+

{% blocktrans %}If you have any trouble resetting your password, contact us at {{ THEME_CONTACT_EMAIL }}.{% endblocktrans %}

+{% endblock %} + +{% block extra_body %} + +{% endblock %} diff --git a/pinaxcon/templates/account/password_reset_sent.html b/pinaxcon/templates/account/password_reset_sent.html new file mode 100644 index 0000000000000000000000000000000000000000..98aa1e89a3e1b298402405bf2cb29e0e64689392 --- /dev/null +++ b/pinaxcon/templates/account/password_reset_sent.html @@ -0,0 +1,27 @@ +{% extends "site_base.html" %} + +{% load i18n %} +{% load account_tags %} + +{% block head_title %}{% trans "Password reset sent" %}{% endblock %} + +{% block content %} +

{% trans "Password reset sent" %}

+ {% if not resend %} +

{% blocktrans %}We have sent you an email. If you do not receive it within a few minutes, try resending or contact us at {{ THEME_CONTACT_EMAIL }}.{% endblocktrans %}

+ +
+
+
+ {% csrf_token %} + {% for field in form %} + {{ field.as_hidden }} + {% endfor %} + +
+
+
+ {% else %} +

{% blocktrans %}We have resent the password email. If you do not receive it within a few minutes, contact us at {{ THEME_CONTACT_EMAIL }}.{% endblocktrans %}

+ {% endif %} +{% endblock %} diff --git a/pinaxcon/templates/account/password_reset_token.html b/pinaxcon/templates/account/password_reset_token.html new file mode 100644 index 0000000000000000000000000000000000000000..6d35a36bb25f9705e13f401e225154bb3e0c2d8f --- /dev/null +++ b/pinaxcon/templates/account/password_reset_token.html @@ -0,0 +1,21 @@ +{% extends "site_base.html" %} + +{% load i18n %} +{% load bootstrap %} + +{% block head_title %}{% trans "Set your new password" %}{% endblock %} + +{% block content %} +
+
+
+ {% trans "Set your new password" %} +
+ {% csrf_token %} + {{ form|bootstrap }} + +
+
+
+
+{% endblock %} diff --git a/pinaxcon/templates/account/password_reset_token_fail.html b/pinaxcon/templates/account/password_reset_token_fail.html new file mode 100644 index 0000000000000000000000000000000000000000..5392704d1632d54b9d2d71ac6065470ea4ec5cc6 --- /dev/null +++ b/pinaxcon/templates/account/password_reset_token_fail.html @@ -0,0 +1,11 @@ +{% extends "site_base.html" %} + +{% load i18n %} + +{% block head_title %}{% trans "Bad token" %}{% endblock %} + +{% block content %} +

{% trans "Bad token" %}

+ {% url "account_password_reset" as url %} +

{% blocktrans %}The password reset link was invalid, possibly because it has already been used. Please request a new password reset.{% endblocktrans %}

+{% endblock %} diff --git a/pinaxcon/templates/account/settings.html b/pinaxcon/templates/account/settings.html new file mode 100644 index 0000000000000000000000000000000000000000..f467cabb2fd581f1ee10e5399d88d1e62ec20d23 --- /dev/null +++ b/pinaxcon/templates/account/settings.html @@ -0,0 +1,21 @@ +{% extends "account/base.html" %} + +{% load i18n %} +{% load bootstrap %} + +{% block body_class %}account account-settings{% endblock %} + +{% block head_title %}{% trans "Account" %}{% endblock %} + +{% block content %} +
+
+
+ {% trans "Account" %} + {% csrf_token %} + {{ form|bootstrap }} + +
+
+
+{% endblock %} diff --git a/pinaxcon/templates/account/signup_closed.html b/pinaxcon/templates/account/signup_closed.html new file mode 100644 index 0000000000000000000000000000000000000000..be664d3a59351daeee27016be150f841c77cc0e4 --- /dev/null +++ b/pinaxcon/templates/account/signup_closed.html @@ -0,0 +1,14 @@ +{% extends "site_base.html" %} + +{% load i18n %} + +{% block head_title %}{% trans "Sign up" %}{% endblock %} + +{% block content %} +

{% trans "This site is in private beta" %}

+

{% blocktrans %}If you have signup code you can enter it below.{% endblocktrans %}

+
+
+
+
+{% endblock %}