root / corbo / templates / registration / login.html @ 459298cc
1 |
{% extends 'corbo/base.html' %} |
---|---|
2 |
{% load i18n %} |
3 |
{% block page-title %}{{ block.super }} :: {% trans "Login" %}{% endblock %} |
4 |
{% block content %} |
5 |
<form method="post"> |
6 |
<ul class="auth"> |
7 |
{% csrf_token %} |
8 |
<li class="tip">{% trans "Please enter your credentials to authenticate" %}</li> |
9 |
{{ form.as_ul }} |
10 |
<li><button>{% trans "Log in" %}</button></li> |
11 |
</ul>
|
12 |
</form>
|
13 |
{% endblock %} |