8 lines
367 B
HTML
8 lines
367 B
HTML
{% load passbook_oauth_client %}
|
|
{% load static %}
|
|
|
|
{% provider_exists 'google' as google_enabled %}
|
|
{% if google_enabled %}
|
|
<a href="{% url 'passbook_oauth_client:oauth-client-login' provider='google' %}" class="btn" style="background-color:white;color:black;margin-top:10px;width:100%;"><img src="{% static 'img/google.svg' %}" style="height:12px"></a>
|
|
{% endif %}
|