Blinkenbunt Account Manager
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.
 
 

36 lines
1.1 KiB

{% extends "bam/base.html" %}
{% block content %}
<h1>Login</h1>
{% 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 'login' %}" class="pure-form pure-form-aligned">
{% csrf_token %}
<fieldset>
<div class="pure-control-group">
{{ form.username.label_tag }}
{{ form.username }}
</div>
<div class="pure-control-group">
{{ form.password.label_tag }}
{{ form.password }}
</div>
<div class="pure-controls">
<button type="submit" class="pure-button pure-button-primary">Login</button>
<a class="pure-button" href="{% url 'password_reset' %}">Lost password?</a>
</div>
<input type="hidden" name="next" value="{{ next }}">
</fieldset>
</form>
{% endblock %}