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.
19 lines
881 B
19 lines
881 B
{% if not _u.logged %}
|
|
<div id="azure-active-directory-login">
|
|
{% if not azure_active_directory.block_title is empty %}
|
|
<h4>{{ azure_active_directory.block_title }}</h4>
|
|
{% endif %}
|
|
|
|
{% if not azure_active_directory.signin_url is empty %}
|
|
<a href="{{ azure_active_directory.signin_url }}" class="btn btn-default">{{ 'SignIn'|get_lang }}</a>
|
|
{% endif %}
|
|
|
|
{% if not azure_active_directory.signup_url is empty %}
|
|
<a href="{{ azure_active_directory.signup_url }}" class="btn btn-success">{{ 'SignUp'|get_lang }}</a>
|
|
{% endif %}
|
|
|
|
{% if not azure_active_directory.signunified_url is empty %}
|
|
<a href="{{ azure_active_directory.signunified_url }}" class="btn btn-info">{{ 'SignUpAndSignIn'|get_plugin_lang('AzureActiveDirectory') }}</a>
|
|
{% endif %}
|
|
</div>
|
|
{% endif %}
|
|
|