You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
cqtu/templates/registration/login.html

47 lines
1.1 KiB

7 years ago
{% extends "base.html" %}
7 years ago
{% load crispy_forms_tags %}
7 years ago
{% block content %}
<h2>Welcome!</h2>
<div class="row">
7 years ago
<div class="col-sm-4 col-sm-offset-4">
<h2 class="text-center">Please login</h2>
<p>
Don't have an account? <a href="{% url 'register' %}">Register here!</a>
</p>
<p>
Trouble logging in? Remember that your call is all upper-case.
</p>
<form action="{% url "login" %}" method="post" class="uniForm">
7 years ago
{% csrf_token %}
7 years ago
{{ form|crispy }}
7 years ago
7 years ago
<button type="submit" class="btn btn-default" value="Login">Login</button>
7 years ago
</form>
</div>
</div>
7 years ago
<!--
<div class="row">
<div class="col-sm-6">
<blockquote>
Serverbasierte Loesung finde ich nach eingem Ueberlegen doof.
<footer>DL7BST</footer>
</blockquote>
</div>
<div class="col-sm-6">
Please Login! Don't have an account? <a href="{% url 'register' %}">Register here!</a>
<form action="#" method="post" class="uniForm">
{% csrf_token %}
{{ form|crispy }}
7 years ago
7 years ago
<button type="submit" class="btn btn-default" value="Login">Login</button>
</form>
</div>
</div>
-->
7 years ago
</div>
{% endblock %}