Statistics
| Branch: | Tag: | Revision:

root / templates / registration / login.html @ af9d484b

History | View | Annotate | Download (1.9 kB)

1 a3923fe7 Leonidas Poulopoulos
{% extends "base.html" %}
2 a3923fe7 Leonidas Poulopoulos
3 a3923fe7 Leonidas Poulopoulos
{% block content %}
4 a3923fe7 Leonidas Poulopoulos
5 a3923fe7 Leonidas Poulopoulos
<div class="container-fluid">
6 a3923fe7 Leonidas Poulopoulos
        <div class="row-fluid">
7 a3923fe7 Leonidas Poulopoulos
        
8 a3923fe7 Leonidas Poulopoulos
        <div class="span3"></div>
9 a3923fe7 Leonidas Poulopoulos
        <div class="span6">
10 a3923fe7 Leonidas Poulopoulos
        <div class="hero-unit">
11 af9d484b Leonidas Poulopoulos
        <div class="row-fluid">
12 af9d484b Leonidas Poulopoulos
        <div class="span3"></div>
13 af9d484b Leonidas Poulopoulos
        <div class="span9">Institutional eduroam management</div>
14 af9d484b Leonidas Poulopoulos
        </div>
15 a3923fe7 Leonidas Poulopoulos
    <form class="form-horizontal" method="post" action="{% url django.contrib.auth.views.login %}">
16 af9d484b Leonidas Poulopoulos
     
17 a3923fe7 Leonidas Poulopoulos
     {% if form.non_field_errors %}
18 a3923fe7 Leonidas Poulopoulos
     {% for err in form.non_field_errors %}
19 a3923fe7 Leonidas Poulopoulos
           <div class="control-group error ">
20 a3923fe7 Leonidas Poulopoulos
                    <div class="controls error">
21 a3923fe7 Leonidas Poulopoulos
                           <span style="color: #B94A48;">{{err}}</span>
22 a3923fe7 Leonidas Poulopoulos
                           </div>
23 a3923fe7 Leonidas Poulopoulos
            </div>
24 a3923fe7 Leonidas Poulopoulos
            {% endfor %}
25 a3923fe7 Leonidas Poulopoulos
            {% endif %}
26 a3923fe7 Leonidas Poulopoulos
    {% csrf_token %}
27 a3923fe7 Leonidas Poulopoulos
    <div class="control-group {% if form.username.errors %} error {% endif %}">
28 a3923fe7 Leonidas Poulopoulos
    <label class="control-label" for="id_username">Username</label>
29 a3923fe7 Leonidas Poulopoulos
    <div class="controls">
30 a3923fe7 Leonidas Poulopoulos
                    {{ form.username }}
31 a3923fe7 Leonidas Poulopoulos
                    {% if form.username.errors %}
32 a3923fe7 Leonidas Poulopoulos
                    <span class="help-inline">
33 a3923fe7 Leonidas Poulopoulos
                        {{ form.username.errors|join:", " }}
34 a3923fe7 Leonidas Poulopoulos
                    </span>
35 a3923fe7 Leonidas Poulopoulos
                    {% endif %}
36 a3923fe7 Leonidas Poulopoulos
                    </div>
37 a3923fe7 Leonidas Poulopoulos
    </div>
38 a3923fe7 Leonidas Poulopoulos
    <div class="control-group {% if form.password.errors %} error {% endif %}">
39 a3923fe7 Leonidas Poulopoulos
    <label class="control-label" for="id_password">Password</label>
40 a3923fe7 Leonidas Poulopoulos
    <div class="controls">
41 a3923fe7 Leonidas Poulopoulos
                    {{ form.password }}
42 a3923fe7 Leonidas Poulopoulos
                    {% if form.password.errors %}
43 a3923fe7 Leonidas Poulopoulos
                    <span class="help-inline">
44 a3923fe7 Leonidas Poulopoulos
                        {{ form.password.errors|join:", " }}
45 a3923fe7 Leonidas Poulopoulos
                    </span>
46 a3923fe7 Leonidas Poulopoulos
                    {% endif %}
47 a3923fe7 Leonidas Poulopoulos
    </div>
48 a3923fe7 Leonidas Poulopoulos
    </div>
49 a3923fe7 Leonidas Poulopoulos
    <div class="control-group">
50 a3923fe7 Leonidas Poulopoulos
    <div class="controls">
51 a3923fe7 Leonidas Poulopoulos
    <button type="submit" class="btn">Sign in</button><input type="hidden"
52 a3923fe7 Leonidas Poulopoulos
                                name="next" value="{% url manage %}" />
53 a3923fe7 Leonidas Poulopoulos
    </div>
54 a3923fe7 Leonidas Poulopoulos
    </div>
55 a3923fe7 Leonidas Poulopoulos
    </form>
56 a3923fe7 Leonidas Poulopoulos
    </div>
57 a3923fe7 Leonidas Poulopoulos
    </div>
58 a3923fe7 Leonidas Poulopoulos
    <div class="span3"></div>
59 a3923fe7 Leonidas Poulopoulos
    </div>
60 a3923fe7 Leonidas Poulopoulos
</div>
61 a3923fe7 Leonidas Poulopoulos
{% endblock %}