1
0
mirror of https://gitlab.crans.org/bde/nk20 synced 2025-07-07 15:58:31 +02:00

change CAS template for #133

This commit is contained in:
quark
2025-07-05 13:56:43 +02:00
parent 4cc43fe4b6
commit 8783a63d7f
6 changed files with 104 additions and 1 deletions

View File

@ -0,0 +1,19 @@
{% extends "base.html" %}
{% comment %}
Copyright (C) by BDE ENS-Paris-Saclay
SPDX-License-Identifier: GPL-3.0-or-later
{% endcomment %}
{% load i18n static %}
{% block content %}
<div class="card bg-light mx-auto" style="max-width: 30rem;">
<div class="card-body">
<form class="form-signin" method="post">
{% csrf_token %}
{% include "cas_server/bs4/form.html" %}
<button class="btn btn-primary btn-block btn-lg" type="submit">{% trans "Connect to the service" %}</button>
</form>
</div>
</div>
{% endblock %}