2015-01-17 23:08:41 +01:00
|
|
|
{% load socialaccount %}
|
|
|
|
|
2015-12-19 20:11:23 +01:00
|
|
|
{% get_providers as socialaccount_providers %}
|
|
|
|
{% for provider in socialaccount_providers %}
|
2015-01-17 23:08:41 +01:00
|
|
|
{% if provider.id == "openid" %}
|
|
|
|
{% for brand in provider.get_brands %}
|
|
|
|
<li>
|
|
|
|
<a title="{{brand.name}}"
|
|
|
|
class="socialaccount_provider {{provider.id}} {{brand.id}}"
|
|
|
|
href="{% provider_login_url provider.id openid=brand.openid_url process=process %}"
|
|
|
|
>{{brand.name}}</a>
|
|
|
|
</li>
|
|
|
|
{% endfor %}
|
|
|
|
{% endif %}
|
|
|
|
<li>
|
|
|
|
<a title="{{provider.name}}"
|
|
|
|
class="socialaccount_provider {{provider.id}}"
|
|
|
|
href="{% provider_login_url provider.id process=process scope=scope auth_params=auth_params %}"><i
|
2018-12-26 13:28:25 +01:00
|
|
|
class="fa fa-{% if provider.id == 'twitter' %}twitter{% elif provider.id == 'google' %}google{% elif provider.id == 'linkedin_oauth2' %}linkedin{% endif %}"></i> {{provider.name}}</a>
|
2015-01-17 23:08:41 +01:00
|
|
|
</li>
|
|
|
|
{% endfor %}
|
|
|
|
|