2023-02-26 21:24:07 +01:00
|
|
|
{% extends "base.j2" %}
|
|
|
|
{% import 'bootstrap/wtf.html' as wtf %}
|
|
|
|
|
|
|
|
{% block app_content %}
|
|
|
|
<h1>Configuration du Service d'Authentification Central (CAS)</h1>
|
|
|
|
|
|
|
|
|
|
|
|
<div class="help">
|
2023-02-27 10:20:59 +01:00
|
|
|
<p>Le CAS permet d'utiliser un service SSO pour connecter les utilisateurs.</p>
|
2023-02-26 21:24:07 +01:00
|
|
|
</div>
|
|
|
|
<div class="row">
|
2023-02-27 10:20:59 +01:00
|
|
|
<div class="col-md-8">
|
2023-02-26 21:24:07 +01:00
|
|
|
{{ wtf.quick_form(form) }}
|
2023-02-27 10:20:59 +01:00
|
|
|
<div class="cas_etat_certif_ssl">Certificat SSL
|
|
|
|
{% if cas_ssl_certificate_loaded %}
|
|
|
|
chargé.
|
|
|
|
{% else %}
|
|
|
|
non chargé.
|
|
|
|
{% endif %}
|
|
|
|
</div>
|
2023-02-26 21:24:07 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
{% endblock %}
|