77f1cb52ea
Signed-off-by: volpino <fox91@anche.no>
48 lines
1.1 KiB
HTML
48 lines
1.1 KiB
HTML
{% extends "registration/_registration_base.html" %}
|
|
{% load url from future %}
|
|
{% load i18n %}
|
|
|
|
{% block content %}
|
|
|
|
{% if form.errors %}
|
|
<div class="alert alert-error">
|
|
<strong>Error:</strong> Your username and password didn't match. Please try again.
|
|
</div>
|
|
{% endif %}
|
|
|
|
<h2>
|
|
Login
|
|
</h2>
|
|
|
|
<form method="post" action="{% url "auth_login" %}">
|
|
{% csrf_token %}
|
|
<table class="table">
|
|
<tr>
|
|
<th>{{ form.username.label_tag }}</th>
|
|
<td>{{ form.username }}</td>
|
|
</tr>
|
|
<tr>
|
|
<th>{{ form.password.label_tag }}</th>
|
|
<td>{{ form.password }}</td>
|
|
</tr>
|
|
<tr>
|
|
<td></td>
|
|
<td>
|
|
<input class="btn pull-right" type="submit" value="Login" />
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td> </td>
|
|
<td> </td>
|
|
</tr>
|
|
<tr>
|
|
<td></td>
|
|
<td>
|
|
<a class="pull-right" href="{% url "django.contrib.auth.views.password_reset" %}">Forgot password</a>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
<input type="hidden" name="next" value="{% url "accounts_index" %}" />
|
|
</form>
|
|
{% endblock %}
|