diff --git a/pinaxcon/templates/account/delete.html b/pinaxcon/templates/account/delete.html new file mode 100644 index 00000000..9f32de64 --- /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 %} +
{% blocktrans %}If you go ahead and delete your account, your information will be expunged within {{ ACCOUNT_DELETION_EXPUNGE_HOURS }} hours.{% endblocktrans %}
+ + + +{% endblock %} diff --git a/pinaxcon/templates/account/email_confirm.html b/pinaxcon/templates/account/email_confirm.html new file mode 100644 index 00000000..f1d18718 --- /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 %} +{% 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 %}
+ +{% endblock %} diff --git a/pinaxcon/templates/account/email_confirmed.html b/pinaxcon/templates/account/email_confirmed.html new file mode 100644 index 00000000..09823392 --- /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 %} +{% 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 00000000..74eaf723 --- /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 %} +{% 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 00000000..98aa1e89 --- /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 %} +{% 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 %}
+ +{% 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 00000000..6d35a36b --- /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 %} +{% 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 00000000..f467cabb --- /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 %} +{% blocktrans %}If you have signup code you can enter it below.{% endblocktrans %}
+ +{% endblock %}