first commit
This commit is contained in:
39
rugwebsite/templates/registration/login.html
Executable file
39
rugwebsite/templates/registration/login.html
Executable 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 %}
|
Reference in New Issue
Block a user