7 lines
337 B
HTML
7 lines
337 B
HTML
{% load passbook_oauth_client %}
|
|
|
|
{% provider_exists 'github' as github_enabled %}
|
|
{% if github_enabled %}
|
|
<a href="{% url 'passbook_oauth_client:oauth-client-login' provider='github' %}" class="btn" style="background-color:#444444;color:white;margin-top:10px;width:100%;"><i class="fa fa-github" aria-hidden="true"></i></a>
|
|
{% endif %}
|