Chamilo is a learning management system focused on ease of use and accessibility
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
chamilo-lms/plugin/oauth2/view/block.tpl

18 lines
576 B

{% if not _u.logged %}
<div id="oauth2-login">
{% if not oauth2.block_title is empty %}
<h4>{{ oauth2.block_title }}</h4>
{% endif %}
{% if not oauth2.signin_url is empty %}
<a href="{{ oauth2.signin_url }}" class="btn btn-default">{{ 'SignIn'|get_lang }}</a>
{% endif %}
{% if oauth2.management_login_enabled %}
<hr>
<a href="{{ _p.web_plugin ~ 'oauth2/login.php' }}">
{{ oauth2.management_login_name }}
</a>
{% endif %}
</div>
{% endif %}