]> git.immae.eu Git - github/wallabag/wallabag.git/blob - src/Wallabag/CoreBundle/Resources/views/Security/login.html.twig
Cleanup & simplify theme
[github/wallabag/wallabag.git] / src / Wallabag / CoreBundle / Resources / views / Security / login.html.twig
1 {% extends "WallabagCoreBundle::layout.html.twig" %}
2
3 {% block title %}{% trans %}login to your wallabag{% endtrans %}{% endblock %}
4
5 {% block body_class %}login{% endblock %}
6
7 {% block menu %}{% endblock %}
8
9 {% block content %}
10 {% if error %}
11 <div>{{ error.message }}</div>
12 {% endif %}
13
14 <form action="{{ path('login_check') }}" method="post" name="loginform">
15 <fieldset class="w500p center">
16 <h2 class="mbs txtcenter">{% trans %}Login to wallabag{% endtrans %}</h2>
17
18 <div class="row">
19 <label class="col w150p" for="username">{% trans %}Username{% endtrans %}</label>
20 <input type="text" id="username" name="_username" value="{{ last_username }}" />
21 </div>
22
23 <div class="row">
24 <label class="col w150p" for="password">{% trans %}Password{% endtrans %}</label>
25 <input type="password" id="password" name="_password" />
26 </div>
27
28 <div class="row mts txtcenter">
29 <button type="submit">login</button>
30 </div>
31 </fieldset>
32 </form>
33 {% endblock %}