| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- {% extends "base_not_logged.html" %}
- {% block header_title %}Login{% endblock %}
- {% block section_title %}Login{% endblock %}
- {% block debug %}
- {% 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 'registration-login' %}">
- {% csrf_token %}
- <table>
- <tr>
- <td>{{ form.username.label_tag }}</td>
- <td>{{ form.username }}</td>
- </tr>
- <tr>
- <td>{{ form.password.label_tag }}</td>
- <td>{{ form.password }}</td>
- </tr>
- </table>
- <input type="submit" value="login">
-
- <input type="hidden" name="next" value="{% if next %}{{ next }}{% else %}{% url 'interface:interface-list' %}{% endif %}">
-
- </form>
- <div id="lostpasswd">
- {# Assumes you setup the password_reset view in your URLconf #}
- <p><a href=" url 'vauth-reset' ">Lost password?</a></p>
- </div>
- {% endblock %}
|