Skip to content
Snippets Groups Projects
Commit 625091f3 authored by Jonathan Weth's avatar Jonathan Weth :keyboard:
Browse files

Merge branch...

Merge branch '454-remove-social-account-card-on-login-page-if-there-are-no-social-accounts' into 'master'

Resolve "Remove social account card on login page if there are no social accounts"

Closes #454

See merge request !622
parents 6ca32fa3 c56c6afd
No related branches found
No related tags found
1 merge request!622Resolve "Remove social account card on login page if there are no social accounts"
Pipeline #12492 failed
......@@ -101,16 +101,17 @@
{% endif %}
</div>
</div>
<div class="card">
<div class="card-content">
{% if wizard.steps.current == 'auth' and socialaccount_providers %}
<div class="card-title">
{% trans "Use alternative login options" %}
</div>
{% include "socialaccount/snippets/provider_list.html" with process="login" %}
{% endif %}
{% if wizard.steps.current == 'auth' and socialaccount_providers %}
<div class="card">
<div class="card-content">
<div class="card-title">
{% trans "Use alternative login options" %}
</div>
{% include "socialaccount/snippets/provider_list.html" with process="login" %}
</div>
</div>
</div>
{% endif %}
</div>
</div>
{% endblock %}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment