- {% blocktrans with confirmation.email_address.email as email %}
+
{% trans "Confirm E-mail Address" %}
+ {% if confirmation %}
+
+ {% blocktrans with confirmation.email_address.email as email %}
Please confirm that {{ email }} is an e-mail address for user {{ user_display }}.
{% endblocktrans %}
-
- {% translate "Enter your user account's verified email address and we will send you a password reset link." %}
-
-
- {% include "account/_render_form.html" %}
- {% translate "Reset my password" as reset_text %}
- {% include "account/_button.html" with text=reset_text %}
-
-{% include "account/_links.html" %}
+
{% translate "Password Reset" %}
+
+ {% translate "Enter your user account's verified email address and we will send you a password reset link." %}
+
+
+ {% include "account/_render_form.html" %}
+ {% translate "Reset my password" as reset_text %}
+ {% include "account/_button.html" with text=reset_text %}
+
{% if token_fail %}{% trans "Bad Token" %}{% else %}{% trans "Change Password" %}{% endif %}
-{% if token_fail %}
-
- Invalid token!
-
- {% url 'account_reset_password' as passwd_reset_url %}
- {% blocktrans %}The password reset link was invalid, possibly because it has already been used.
+
+ {% if token_fail %}
+ {% trans "Bad Token" %}
+ {% else %}
+ {% trans "Change Password" %}
+ {% endif %}
+
+ {% if token_fail %}
+
+ Invalid token!
+
+ {% url 'account_reset_password' as passwd_reset_url %}
+ {% blocktrans %}The password reset link was invalid, possibly because it has already been used.
Please request a
new password reset.{% endblocktrans %}
-
-
-{% else %}
- {% if form %}
-
- {% include "account/_render_form.html" %}
- {% translate "Change password" as change_text %}
- {% include "account/_button.html" with text=change_text %}
-
- {% else %}
-
{% trans 'Your password is now changed.' %}
- {% endif %}
-{% endif %}
+
+
+ {% else %}
+ {% if form %}
+
+ {% include "account/_render_form.html" %}
+ {% translate "Change password" as change_text %}
+ {% include "account/_button.html" with text=change_text %}
+
+ {% blocktrans %}
We have sent an e-mail to you for verification. Follow the link provided to finalize the signup process.
Please contact us if you do not receive it within a few minutes.
{% endblocktrans %}
-
{% blocktrans %}You have the following social accounts connected:{% endblocktrans %}
-
-
- {% csrf_token %}
-
- {% include "account/_non_field_errors.html" %}
-
- {% for base_account in form.accounts %}
- {% with base_account.get_provider_account as account %}
-
-
-
- {% endwith %}
- {% endfor %}
-
- {% include "account/_button.html" with text="Remove" base_color="bg-red" %}
-
-
-{% else %}
-
{% trans 'You currently have no social network accounts connected to this account.' %}
-{% endif %}
-
-
- OR
-
-
-{% trans 'Add a third party account' %}
-
-{% include "socialaccount/snippets/provider_list.html" with process="connect" %}
-{% include "socialaccount/snippets/login_extra.html" %}
-
+
{% trans "Account Connections" %}
+ {% if form.accounts %}
+
+ {% blocktrans %}You have the following social accounts connected:{% endblocktrans %}
+
+
+ {% csrf_token %}
+ {% include "account/_non_field_errors.html" %}
+ {% for base_account in form.accounts %}
+ {% with base_account.get_provider_account as account %}
+
+
+
+ {% endwith %}
+ {% endfor %}
+ {% include "account/_button.html" with text="Remove" base_color="bg-red" %}
+
+ {% else %}
+
{% trans 'You currently have no social network accounts connected to this account.' %}
+ {% endif %}
+
+
+ OR
+
+
+ {% trans 'Add a third party account' %}
+
+ {% include "socialaccount/snippets/provider_list.html" with process="connect" %}
+ {% include "socialaccount/snippets/login_extra.html" %}
+
- {% if process == "connect" %}
- {% translate "You are about to connect a new third party account from" %} {{ provider.name }}.
- {% else %}
- {% translate "You are about to sign in using a third party account from" %} {{ provider.name }}.
- {% endif %}
-
-
-
- {% csrf_token %}
- {% translate "Continue" as continue_text %}
- {% include "account/_button.html" with text=continue_text %}
-
+
+
+
+ {% if process == "connect" %}
+ {% translate "You are about to connect a new third party account from" %} {{ provider.name }}.
+ {% else %}
+ {% translate "You are about to sign in using a third party account from" %} {{ provider.name }}.
+ {% endif %}
+
+
+
+ {% csrf_token %}
+ {% translate "Continue" as continue_text %}
+ {% include "account/_button.html" with text=continue_text %}
+
-{% blocktrans with provider_name=account.get_provider.name site_name=site.name %}
+
{% trans "Sign Up" %}
+
+ {% blocktrans with provider_name=account.get_provider.name site_name=site.name %}
You are about to use your {{provider_name}} account to login to
{{site_name}}. As a final step, please complete the following form:
{% endblocktrans %}
-
-
-
- {% include "account/_render_form.html" %}
- {% translate "Sign up" as signup_text %}
- {% include "account/_button.html" with text=signup_text %}
-
+
+
+ {% include "account/_render_form.html" %}
+ {% translate "Sign up" as signup_text %}
+ {% include "account/_button.html" with text=signup_text %}
+
{% endblock %}
diff --git a/allauth_ui/templates/socialaccount/snippets/provider_list.html b/allauth_ui/templates/socialaccount/snippets/provider_list.html
index 4bf9131..6933bfb 100644
--- a/allauth_ui/templates/socialaccount/snippets/provider_list.html
+++ b/allauth_ui/templates/socialaccount/snippets/provider_list.html
@@ -1,16 +1,13 @@
{% load socialaccount %}
{% load allauth_ui %}
-
{% get_providers as socialaccount_providers %}
-
{% for provider in socialaccount_providers %}
- {% if provider.id == "openid" %}
- {% for brand in provider.get_brands %}
- {{brand.name}}
- {% endfor %}
- {% endif %}
- {{provider.name}}
-
+ {% if provider.id == "openid" %}
+ {% for brand in provider.get_brands %}
+ {{ brand.name }}
+ {% endfor %}
+ {% endif %}
+ {{ provider.name }}
{% endfor %}
diff --git a/allauth_ui/templates/socialaccount/snippets/social_login.html b/allauth_ui/templates/socialaccount/snippets/social_login.html
index 4d0c96d..fab412c 100644
--- a/allauth_ui/templates/socialaccount/snippets/social_login.html
+++ b/allauth_ui/templates/socialaccount/snippets/social_login.html
@@ -1,14 +1,12 @@
{% load socialaccount i18n %}
{% get_providers as socialaccount_providers %}
{% if socialaccount_providers %}
-
-
- OR
-
-
-
-
{% translate "Sign in with a third party" %}
-
-{% include "socialaccount/snippets/provider_list.html" with process="login" %}
-{% include "socialaccount/snippets/login_extra.html" %}
+
+
+ OR
+
+
+
{% translate "Sign in with a third party" %}
+ {% include "socialaccount/snippets/provider_list.html" with process="login" %}
+ {% include "socialaccount/snippets/login_extra.html" %}
{% endif %}