summaryrefslogtreecommitdiff
path: root/src/application/templates/bootstrap-3/login.twig
blob: 63b9867c8104f40ac1337edc0c38e75760857efd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{% set title = __("Log in") %}
{% set formId = "login" %}
{% set formError = getAndClearFormError(formId) %}

{% extends "base.twig" %}

{% block content %}

<div class="page-header margin-top-0">
    <h1>{{ __("Log in") }}</h1>
</div>

<div class="col-md-4"></div>

<div class="well col-md-4">
    {% if formError %}
        {% include "components/alert_error.twig" with { message: formError } %}
    {% endif %}
    <form action="{{ g.server.REQUEST_URI }}" method="post">
        <input type="hidden" name="form_id" value="{{ formId }}">

        <div class="form-group">
            <label for="i_username">{{ __("Username:") }}</label>
            <input class="form-control" type="text" id="i_username" name="username" value="{{ lastFormField(formId, "username") }}" required autofocus>
        </div>

        <div class="form-group">
            <label for="i_password">{{ __("Password:") }}</label>
            <input class="form-control" type="password" id="i_password" name="password" required>
        </div>

        <div class="form-group">
            <button class="btn btn-primary" type="submit">{{ __("Log in") }}</button>
            <a class="btn btn-link" href="?_action=pwreset">{{ __("I forgot my password") }}</a>
        </div>

        {% if constant("REGISTRATION_ENABLED") %}
            <div class="form-group">
                {{ __("Don't have an account? %link%Register now%/link%", {
                    "link": '<a href="?_action=register">',
                    "/link": '</a>',
                }) }}
            </div>
        {% endif %}
    </form>
</div>

<div class="col-md-4"></div>

{% endblock %}