first commit

This commit is contained in:
2017-11-14 09:51:57 +01:00
parent 6c01cd24a0
commit 8d744a916f
55 changed files with 12311 additions and 0 deletions

View File

@@ -0,0 +1,39 @@
{% 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 %}