33 lines
1.0 KiB
HTML
33 lines
1.0 KiB
HTML
{% extends 'bootstrap3/bootstrap3.html' %}
|
|
{% load i18n %}
|
|
{% block bootstrap3_title %}{% block title %}{% trans "Central Authentication Service" %}{% endblock %}{% endblock %}
|
|
|
|
{% load staticfiles %}
|
|
{% load bootstrap3 %}
|
|
|
|
{% block bootstrap3_extra_head %}
|
|
<link rel="shortcut icon" href="/static/cas_server/favicon.ico?v=1" />
|
|
<link href="{% static "cas_server/login.css" %}" rel="stylesheet">
|
|
{% endblock %}
|
|
|
|
{% block bootstrap3_content %}
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12">
|
|
<h1 id="app-name">
|
|
{% if settings.CAS_LOGO_URL %}<img src="{{settings.CAS_LOGO_URL}}"></img> {% endif %}
|
|
{% trans "Central Authentication Service" %}</h1>
|
|
</div>
|
|
</div>
|
|
<div class="row">
|
|
<div class="col-lg-3 col-md-3 col-sm-2 col-xs-12"></div>
|
|
<div class="col-lg-6 col-md-6 col-sm-8 col-xs-12">
|
|
{% bootstrap_messages %}
|
|
{% block content %}
|
|
{% endblock %}
|
|
</div>
|
|
<div class="col-lg-3 col-md-3 col-sm-2 col-xs-0"></div>
|
|
</div>
|
|
</div> <!-- /container -->
|
|
{% endblock %}
|