forked from ScoDoc/ScoDoc
50 lines
1.3 KiB
Django/Jinja
50 lines
1.3 KiB
Django/Jinja
{# -*- mode: jinja-html -*- #}
|
|
{% extends 'base.j2' %}
|
|
{% import 'wtf.j2' as wtf %}
|
|
|
|
{% block app_content %}
|
|
|
|
<style>
|
|
div.cas_invite {
|
|
font-size: 120%;
|
|
margin-top: 32px;
|
|
margin-bottom: 16px;
|
|
}
|
|
div.cas_else {
|
|
margin-top: 32px;
|
|
margin-bottom: 8px;
|
|
}
|
|
div.small_form {
|
|
font-size: 80%;
|
|
}
|
|
</style>
|
|
|
|
<h1>Connexion</h1>
|
|
|
|
{% if is_cas_enabled %}
|
|
<div class="cas_invite">
|
|
Pour vous connecter avec vos <b>identifiants ENT</b> (CAS):
|
|
<a href="{{ url_for('cas.login') }}" class="stdlink">cliquer ici</a>.
|
|
</div>
|
|
{% endif %}
|
|
|
|
{% if is_cas_enabled %}
|
|
<div class="cas_else">Sinon vous pouvez vous connecter avec votre compte ScoDoc:</div>
|
|
{% endif %}
|
|
<div class="row {{ 'small_form' if is_cas_enabled else ''}}">
|
|
<div class="col-md-4">
|
|
{{ wtf.quick_form(form) }}
|
|
</div>
|
|
</div>
|
|
|
|
<div style="margin-top: 32px;">
|
|
En cas d'oubli de votre mot de passe ScoDoc (indépendant de CAS)
|
|
<a href="{{ url_for('auth.reset_password_request') }}">cliquez ici pour le réinitialiser</a>.
|
|
</div>
|
|
|
|
|
|
<p class="help" style="margin-top: 32px;">L'accès à ScoDoc est strictement réservé aux personnels de
|
|
l'établissement. Les étudiants n'y ont pas accès. Pour toute information,
|
|
contactez la personne responsable de votre établissement.</p>
|
|
{% endblock %}
|