Project

General

Profile

Download (411 Bytes) Statistics
| Branch: | Tag: | Revision:

root / uauth / templates / registration / login.html @ 7b499930

1
{% extends "uauth/base.html" %}
2
{% load i18n %}
3

    
4
{% block more-user-links %}
5
{{ block.super }}
6
  <a href="{% url "login" %}">{% trans 'Login' %}</a>
7
{% endblock %}
8

    
9
{% block content %}
10
<div class="loginbox">
11
  <h4>{% trans "Login" %}</h4>
12
  <form method="post">
13
    <ul>
14
      {% csrf_token %}
15
      {{ form.as_ul }}
16
      <li><button>{% trans "Login" %}</button></li>
17
    </ul>
18
  </form>
19
</div>
20
{% endblock %}
    (1-1/1)