mirror of https://gitlab.federez.net/re2o/re2o
4 changed files with 52 additions and 3 deletions
@ -0,0 +1,32 @@ |
|||||
|
{% extends "base.html" %} |
||||
|
|
||||
|
{% load bootstrap3 %} |
||||
|
|
||||
|
{% block title %}Login{% endblock %} |
||||
|
|
||||
|
{% block content %} |
||||
|
|
||||
|
{% if form.errors %} |
||||
|
<p>Your username and password didn't match. Please try again.</p> |
||||
|
{% endif %} |
||||
|
|
||||
|
{% if next %} |
||||
|
{% if user.is_authenticated %} |
||||
|
<p>Your account doesn't have access to this page. To proceed, |
||||
|
please login with an account that has access.</p> |
||||
|
{% else %} |
||||
|
<p>Please login to see this page.</p> |
||||
|
{% endif %} |
||||
|
{% endif %} |
||||
|
|
||||
|
<form method="post" action="{% url 'django.contrib.auth.views.login' %}"> |
||||
|
{% csrf_token %} |
||||
|
{% bootstrap_form form %} |
||||
|
{% bootstrap_button "Login" button_type="submit" icon="log-in" %} |
||||
|
<input type="hidden" name="next" value="{{ next }}" /> |
||||
|
</form> |
||||
|
|
||||
|
{# Assumes you setup the password_reset view in your URLconf #} |
||||
|
{# <p><a href="{% url 'password_reset' %}">Lost password?</a></p> #} |
||||
|
|
||||
|
{% endblock %} |
||||
Loading…
Reference in new issue