diff --git a/pinaxcon/templates/account/_login_sidebar.html b/pinaxcon/templates/account/_login_sidebar.html new file mode 100644 index 00000000..dcf7d21b --- /dev/null +++ b/pinaxcon/templates/account/_login_sidebar.html @@ -0,0 +1 @@ +{# provide log in sidebar here #} \ No newline at end of file diff --git a/pinaxcon/templates/account/_signup_sidebar.html b/pinaxcon/templates/account/_signup_sidebar.html new file mode 100644 index 00000000..660aca18 --- /dev/null +++ b/pinaxcon/templates/account/_signup_sidebar.html @@ -0,0 +1 @@ +{# provide sign up in sidebar here #} \ No newline at end of file diff --git a/pinaxcon/templates/account/base.html b/pinaxcon/templates/account/base.html new file mode 100644 index 00000000..8f15d1c3 --- /dev/null +++ b/pinaxcon/templates/account/base.html @@ -0,0 +1,25 @@ +{% extends "utility_page.html" %} + +{% load i18n %} + +{% block body_class %}account{% endblock %} + +{% block utility_body %} + +
{% 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/email_confirmation_message.txt b/pinaxcon/templates/account/email/email_confirmation_message.txt new file mode 100644 index 00000000..c3b42445 --- /dev/null +++ b/pinaxcon/templates/account/email/email_confirmation_message.txt @@ -0,0 +1,6 @@ +{% load i18n account_tags %}{% blocktrans with site_name=current_site.name %}A user on {{ site_name }} has created an account using this email address. + +To confirm this email address, go to {{ activate_url }} + +If you did not sign up for this site, you can ignore this message. +{% endblocktrans %} \ No newline at end of file diff --git a/pinaxcon/templates/account/email/email_confirmation_subject.txt b/pinaxcon/templates/account/email/email_confirmation_subject.txt new file mode 100644 index 00000000..ad4cf943 --- /dev/null +++ b/pinaxcon/templates/account/email/email_confirmation_subject.txt @@ -0,0 +1 @@ +{% load i18n %}{% blocktrans with site_name=current_site.name %}Confirm email address for {{ site_name }}{% endblocktrans %} \ No newline at end of file diff --git a/pinaxcon/templates/account/email/invite_user.txt b/pinaxcon/templates/account/email/invite_user.txt new file mode 100644 index 00000000..a8173375 --- /dev/null +++ b/pinaxcon/templates/account/email/invite_user.txt @@ -0,0 +1,4 @@ +{% load i18n %}{% blocktrans with name=current_site.name %}You have been invited to sign up at {{ name }}. + +{{ signup_url }} +{% endblocktrans %} \ No newline at end of file diff --git a/pinaxcon/templates/account/email/invite_user_subject.txt b/pinaxcon/templates/account/email/invite_user_subject.txt new file mode 100644 index 00000000..86a4b06e --- /dev/null +++ b/pinaxcon/templates/account/email/invite_user_subject.txt @@ -0,0 +1 @@ +{% load i18n %}{% blocktrans with name=current_site.name %}Create an account on {{ name }}{% endblocktrans %} \ No newline at end of file diff --git a/pinaxcon/templates/account/email/password_change.txt b/pinaxcon/templates/account/email/password_change.txt new file mode 100644 index 00000000..66f40e9b --- /dev/null +++ b/pinaxcon/templates/account/email/password_change.txt @@ -0,0 +1 @@ +{% load i18n %}{% blocktrans with now=user.account.now %}This is the email notification to confirm your password has been changed on {{ now }}.{% endblocktrans %} \ No newline at end of file diff --git a/pinaxcon/templates/account/email/password_change_subject.txt b/pinaxcon/templates/account/email/password_change_subject.txt new file mode 100644 index 00000000..e722a8ae --- /dev/null +++ b/pinaxcon/templates/account/email/password_change_subject.txt @@ -0,0 +1 @@ +{% load i18n %}{% trans "Change password email notification" %} \ No newline at end of file diff --git a/pinaxcon/templates/account/email/password_reset.txt b/pinaxcon/templates/account/email/password_reset.txt new file mode 100644 index 00000000..55170c7b --- /dev/null +++ b/pinaxcon/templates/account/email/password_reset.txt @@ -0,0 +1,5 @@ +{% load i18n %}{% blocktrans with site_name=current_site.name %}You're receiving this email because you or someone else has requested a password for your user account at {{ site_name }}. +It can be safely ignored if you did not request a password reset. Click the link below to reset your password. + +{{ password_reset_url }} +{% endblocktrans %} \ No newline at end of file diff --git a/pinaxcon/templates/account/email/password_reset_subject.txt b/pinaxcon/templates/account/email/password_reset_subject.txt new file mode 100644 index 00000000..94020c9b --- /dev/null +++ b/pinaxcon/templates/account/email/password_reset_subject.txt @@ -0,0 +1 @@ +{% load i18n %}{% blocktrans with site_name=current_site.name %}[{{ site_name }}] Password reset{% endblocktrans %} \ No newline at end of file diff --git a/pinaxcon/templates/account/email_confirm.html b/pinaxcon/templates/account/email_confirm.html new file mode 100644 index 00000000..bbe42ad9 --- /dev/null +++ b/pinaxcon/templates/account/email_confirm.html @@ -0,0 +1,16 @@ +{% extends "utility_page.html" %} + +{% load i18n %} + +{% block head_title %}{% trans "Confirm Email" %}{% endblock %} +{% block page_title %}{% trans "Confirm Email" %}{% endblock %} + +{% block utility_body %} + +{% endblock %} diff --git a/pinaxcon/templates/account/email_confirmation_sent.html b/pinaxcon/templates/account/email_confirmation_sent.html new file mode 100644 index 00000000..b9f35a6d --- /dev/null +++ b/pinaxcon/templates/account/email_confirmation_sent.html @@ -0,0 +1,12 @@ +{% extends "utility_page.html" %} + +{% load i18n %} + +{% block head_title %}{% trans "Confirm your email address" %}{% endblock %} +{% block page_title %}{% trans "Confirm your email address" %}{% endblock %} + +{% block utility_body %} + +{% 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..2b444a58 --- /dev/null +++ b/pinaxcon/templates/account/email_confirmed.html @@ -0,0 +1,10 @@ +{% extends "utility_page.html" %} + +{% load i18n %} + +{% block head_title %}{% trans "Email confirmed" %}{% endblock %} +{% block page_title %}{% trans "Email confirmed" %}{% endblock %} + +{% block utility_body %} +{% blocktrans with email=confirmation.email_address.email %}You have confirmed {{ email }}{% endblocktrans %}
+{% endblock %} diff --git a/pinaxcon/templates/account/login.html b/pinaxcon/templates/account/login.html new file mode 100644 index 00000000..14276fa4 --- /dev/null +++ b/pinaxcon/templates/account/login.html @@ -0,0 +1,39 @@ +{% extends "utility_page.html" %} + +{% load account_tags %} +{% load i18n %} +{% load bootstrap %} + +{% block head_title %}{% trans "Log in" %}{% endblock %} +{% block page_title %}{% trans "Log in to an existing account" %}{% endblock %} + +{% block utility_body %} + + {% if ACCOUNT_OPEN_SIGNUP %} ++ {% trans "Don't have an account?" %} {% trans "Sign up" %} +
+ {% endif %} + + +{% endblock %} + +{% block scripts %} + {{ block.super }} + +{% endblock %} diff --git a/pinaxcon/templates/account/logout.html b/pinaxcon/templates/account/logout.html new file mode 100644 index 00000000..031f8544 --- /dev/null +++ b/pinaxcon/templates/account/logout.html @@ -0,0 +1,14 @@ +{% extends "utility_page.html" %} + +{% load i18n %} + +{% block head_title %}{% trans "Log out" %}{% endblock %} +{% block page_title %}{% trans "Log out" %}{% endblock %} + +{% block utility_body %} + +{% endblock %} diff --git a/pinaxcon/templates/account/password_change.html b/pinaxcon/templates/account/password_change.html new file mode 100644 index 00000000..7f85c596 --- /dev/null +++ b/pinaxcon/templates/account/password_change.html @@ -0,0 +1,20 @@ +{% extends "account/base.html" %} + +{% load i18n %} +{% load bootstrap %} + +{% block body_class %}account account-password{% endblock %} + +{% block head_title %}{% trans "Change password" %}{% endblock %} +{% block page_title %}{% trans "Change password" %}{% endblock %} +{% block btn-password %}btn__active{% endblock %} + +{% block account_body %} + +{% endblock %} diff --git a/pinaxcon/templates/account/password_reset.html b/pinaxcon/templates/account/password_reset.html new file mode 100644 index 00000000..d3e36565 --- /dev/null +++ b/pinaxcon/templates/account/password_reset.html @@ -0,0 +1,30 @@ +{% extends "utility_page.html" %} + +{% load i18n %} +{% load bootstrap %} +{% load account_tags %} + +{% block head_title %}{% trans "Password reset" %}{% endblock %} +{% block page_title %}{% trans "Password reset" %}{% endblock %} + +{% user_display request.user as user_display %} + +{% block utility_body %} + +{% 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..c1b43edc --- /dev/null +++ b/pinaxcon/templates/account/password_reset_sent.html @@ -0,0 +1,23 @@ +{% extends "utility_page.html" %} + +{% load i18n %} +{% load account_tags %} + +{% block head_title %}{% trans "Password reset sent" %}{% endblock %} +{% block page_title %}{% trans "Password reset sent" %}{% endblock %} + +{% block utility_body %} + {% 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 %}
+ + + {% 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 00000000..c91cfaff --- /dev/null +++ b/pinaxcon/templates/account/password_reset_token.html @@ -0,0 +1,18 @@ +{% extends "utility_page.html" %} + +{% load i18n %} +{% load bootstrap %} + +{% block head_title %}{% trans "Set your new password" %}{% endblock %} +{% block page_title %}{% trans "Set your new password" %}{% endblock %} + +{% block utility_body %} + +{% 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 00000000..043406f5 --- /dev/null +++ b/pinaxcon/templates/account/password_reset_token_fail.html @@ -0,0 +1,11 @@ +{% extends "utility_page.html" %} + +{% load i18n %} + +{% block head_title %}{% trans "Bad token" %}{% endblock %} +{% block page_title %}{% trans "Bad token" %}{% endblock %} + +{% block utility_body %} + {% 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 00000000..e06d39c1 --- /dev/null +++ b/pinaxcon/templates/account/settings.html @@ -0,0 +1,20 @@ +{% extends "account/base.html" %} + +{% load i18n %} +{% load bootstrap %} + +{% block body_class %}account account-settings{% endblock %} + +{% block head_title %}{% trans "Account Settings" %}{% endblock %} +{% block page_title %}{% trans "Account Settings" %}{% endblock %} +{% block btn-settings %}btn__active{% endblock %} + +{% block account_body %} + +{% endblock %} diff --git a/pinaxcon/templates/account/signup.html b/pinaxcon/templates/account/signup.html new file mode 100644 index 00000000..a5a3dbda --- /dev/null +++ b/pinaxcon/templates/account/signup.html @@ -0,0 +1,33 @@ +{% extends "utility_page.html" %} + +{% load account_tags %} +{% load i18n %} +{% load bootstrap %} + +{% block head_title %}{% trans "Sign up" %}{% endblock %} +{% block page_title %}{% trans "Sign up" %}{% endblock %} + +{% block utility_body %} ++ {% trans "Already have an account?" %} {% trans "Log in" %} +
+ +{% endblock %} + +{% block scripts %} + {{ block.super }} + +{% endblock %} diff --git a/pinaxcon/templates/account/signup_closed.html b/pinaxcon/templates/account/signup_closed.html new file mode 100644 index 00000000..270d869c --- /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 body %} +{% blocktrans %}If you have signup code you can enter it below.{% endblocktrans %}
+ +{% endblock %} diff --git a/pinaxcon/templates/symposion/proposals/base.html b/pinaxcon/templates/symposion/proposals/base.html index 43464cad..43cef910 100644 --- a/pinaxcon/templates/symposion/proposals/base.html +++ b/pinaxcon/templates/symposion/proposals/base.html @@ -1,16 +1,16 @@ -{% extends "site_base_wagtail.html" %} +{% extends "utility_page.html" %} {% load staticfiles %} -{% block body %} + +{% block utility_body_outer %} +{% block proposals_body_outer %}