forked from ScoDoc/ScoDoc
18 lines
320 B
Plaintext
18 lines
320 B
Plaintext
|
{% extends "base.j2" %}
|
||
|
{% import 'bootstrap/wtf.html' as wtf %}
|
||
|
|
||
|
{% block app_content %}
|
||
|
<h1>Configuration du Service d'Authentification Central (CAS)</h1>
|
||
|
|
||
|
|
||
|
<div class="help">
|
||
|
<p>Le CAS...</p>
|
||
|
</div>
|
||
|
<div class="row">
|
||
|
<div class="col-md-4">
|
||
|
{{ wtf.quick_form(form) }}
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
|
||
|
{% endblock %}
|