40 lines
1.0 KiB
HTML
40 lines
1.0 KiB
HTML
{% extends "base.html" %}
|
|
{% load url from future %}
|
|
{% load i18n %}
|
|
|
|
{% block content %}
|
|
|
|
{% if form.errors %}
|
|
<div class="ui-widget">
|
|
<div style="padding: 0pt 0.7em;" class="ui-state-error ui-corner-all">
|
|
<p><span style="float: left; margin-right: 0.3em;" class="ui-icon ui-icon-alert"></span>
|
|
{% trans "Your username and password didn't match. Please try again." %}
|
|
</p>
|
|
</div>
|
|
</div>
|
|
{% endif %}
|
|
|
|
<form method="post" action="{% url 'django.contrib.auth.views.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="{% trans "Login" %}" class="button" />
|
|
<input type="hidden" name="next" value="{{ next }}" />
|
|
</form>
|
|
|
|
<p>
|
|
{% url 'registration.views.register' as register_url %}
|
|
{% blocktrans %}Do not have an account yet? You can <a href="{{ register_url }}">register</a>.{% endblocktrans %}
|
|
</p>
|
|
|
|
{% endblock %}
|