aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Resources/views/Security/login.html.twig
blob: f669574e8602cbbca83a2cb35f602a7d1048c737 (plain) (blame)
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
{% extends "WallabagCoreBundle::layout.html.twig" %}

{% block title %}{% trans %}login to your wallabag{% endtrans %}{% endblock %}

{% block body_class %}login{% endblock %}

{% block menu %}{% endblock %}
{% block messages %}{% endblock %}

{% block content %}
        <form action="{{ path('login_check') }}" method="post" name="loginform">
            <fieldset class="w500p center">
                <h2 class="mbs txtcenter">{% trans %}Login to wallabag{% endtrans %}</h2>
                {% if error %}
                    <div>{{ error.message }}</div>
                {% endif %}

                {% for flashMessage in app.session.flashbag.get('notice') %}
                    <p>{{ flashMessage }}</p>
                {% endfor %}

                <div class="row">
                    <label class="col w150p" for="username">{% trans %}Username{% endtrans %}</label>
                    <input type="text" id="username" name="_username" value="{{ last_username }}" />
                </div>

                <div class="row">
                    <label class="col w150p" for="password">{% trans %}Password{% endtrans %}</label>
                    <input type="password" id="password" name="_password" />
                </div>

                <div class="row mts txtcenter">
                    <button type="submit">Login</button>
                    <a href="{{ path('forgot_password') }}" class="small">Forgot your password?</a>
                </div>
            </fieldset>
        </form>
{% endblock %}