cmsmanage/templates/auth/login.djhtml

38 lines
1.1 KiB
Plaintext
Raw Normal View History

{% extends "base.djhtml" %}
2020-12-15 14:16:10 -05:00
{% load widget_tweaks %}
{% block title %} Login {% endblock %}
{% block content %}
{% if form.errors %}
2020-12-15 14:16:10 -05:00
<p class="alert alert-danger">Your username and password didn't match. Please try again.</p>
{% endif %}
{% if next %}
{% if user.is_authenticated %}
2020-12-15 14:16:10 -05:00
<p class="alert alert-danger">
Your account doesn't have access to this page. To proceed,
please login with an account that has access.
</p>
{% else %}
2020-12-15 14:16:10 -05:00
<p class="alert alert-info">Please login to see this page.</p>
{% endif %}
{% endif %}
2020-12-15 14:16:10 -05:00
<form class="d-flex flex-column align-items-center" method="post" action="{% url 'login' %}">
{% csrf_token %}
2020-12-15 14:16:10 -05:00
{% for field in form %}
<div class="form-group row">
<label class="col-sm-4 col-form-label" for="{{ field.auto_id }}">{{ field.label }}</label>
<div class="col-sm-8">
{% render_field field class="form-control" %}
</div>
</div>
{% endfor %}
<input type="submit" class="btn btn-primary" value="login" />
<input type="hidden" name="next" value="{{ next }}" />
</form>
{% endblock %}