40 lines
1.1 KiB
HTML
Executable File
40 lines
1.1 KiB
HTML
Executable File
{% extends "rugwebsite/base.html" %}
|
|
|
|
{% load bootstrap4 %}
|
|
{% load static %}
|
|
|
|
|
|
{% block content %}
|
|
<div style="width: 1600px; margin-left: auto; margin-right: auto;">
|
|
|
|
<div class="row" style="width: 1600px;">
|
|
<div class="col-md-7">
|
|
<br/><br/><br/><br/><br/>
|
|
<h1>RUG example django app</h1>
|
|
<p>The University of Groningen example app features
|
|
|
|
<ul>
|
|
<li>SAML2 authentication</li>
|
|
<li>The RUG-logo!</li>
|
|
<li>RUG-like navigation</li>
|
|
</ul>
|
|
|
|
</p>
|
|
</div>
|
|
<div class="col-md-1" style="border-right: 1px solid #333"></div>
|
|
<div class="col-md-1"></div>
|
|
<div class="col-md-3">
|
|
<br/><br/><br/><br/><br/>
|
|
<h1>Welcome,</h1>
|
|
<p>Login here with your p-, f-, or s-number.</p>
|
|
<br/><br/>
|
|
<form action="{% url 'login' %}" method="post" accept-charset="utf-8">
|
|
{% csrf_token %}
|
|
{% bootstrap_form form %}
|
|
<input class="btn btn-primary" type="submit" value="Log in"/>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock content %}
|