21 lines
831 B
HTML
21 lines
831 B
HTML
{% load socialaccount %}
|
|
|
|
{% for provider in socialaccount.providers %}
|
|
{% 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
|
|
class="fa fa-{% if provider.id == 'twitter' %}twitter{% elif provider.id == 'google' %}google{% elif provider.id == 'xing' %}xing{% elif provider.id == 'linkedin_oauth2' %}linkedin{% endif %}"></i> {{provider.name}}</a>
|
|
</li>
|
|
{% endfor %}
|
|
|