mirror of
https://gitlab.crans.org/bde/nk20
synced 2025-07-05 23:13:54 +02:00
29 lines
1.2 KiB
HTML
29 lines
1.2 KiB
HTML
{% extends "base.html" %}
|
|
{% comment %}
|
|
Copyright (C) by BDE ENS-Paris-Saclay
|
|
SPDX-License-Identifier: GPL-3.0-or-later
|
|
{% endcomment %}
|
|
{% load i18n %}
|
|
{% block content %}
|
|
<div class="alert alert-success" role="alert">{% blocktrans %}<h3>Log In Successful</h3>You have successfully logged into the Central Authentication Service.<br/>For security reasons, please Log Out and Exit your web browser when you are done accessing services that require authentication!{% endblocktrans %}</div>
|
|
<div class="card bg-light mx-auto" style="max-width:30rem;">
|
|
<div class="card-body">
|
|
<form class="form-signin" method="get" action="logout">
|
|
<div class="checkbox">
|
|
<label>
|
|
<input type="checkbox" name="all" value="1">{% trans "Log me out from all my sessions" %}
|
|
</label>
|
|
</div>
|
|
{% if settings.CAS_FEDERATE and request.COOKIES.remember_provider %}
|
|
<div class="checkbox">
|
|
<label>
|
|
<input type="checkbox" name="forget_provider" value="1">{% trans "Forget the identity provider" %}
|
|
</label>
|
|
</div>
|
|
{% endif %}
|
|
<button class="btn btn-danger btn-block btn-lg" type="submit">{% trans "Logout" %}</button>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|