13 lines
356 B
HTML
13 lines
356 B
HTML
{% extends "cas_server/base.html" %}
|
|
{% load bootstrap3 %}
|
|
{% load staticfiles %}
|
|
{% load i18n %}
|
|
|
|
{% block content %}
|
|
<form class="form-signin" method="post">
|
|
{% csrf_token %}
|
|
{% bootstrap_form form %}
|
|
{% bootstrap_button _('Connect to the service') size='lg' button_type="submit" button_class="btn-primary btn-block"%}
|
|
</form>
|
|
{% endblock %}
|