cas-eleves/customize_cas/templates/cas_server/login.html
2020-03-24 15:38:16 +01:00

16 lines
391 B
HTML

{% extends "cas_server/base.html" %}
{% load i18n %}
{% block content %}
<h2>{% blocktrans %}
Please log in with your Clipper credentials
{% endblocktrans %}</h2>
<form method="post" id="login_form"{% if post_url %} action="{{post_url}}"{% endif %}>
{% csrf_token %}
{% include "cas_server/form.html" %}
<button type="submit">{% trans "Log in" %}</button>
</form>
{% endblock %}