aboutsummaryrefslogtreecommitdiffhomepage
path: root/themes/baggy/login.twig
blob: 58290e9c646cf68dcbea0dd44c29ffd57e59efa5 (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
{% extends "layout-login.twig" %}

{% block title %}{% trans "login to your wallabag" %}{% endblock %}
{% block content %}
    {% if http_auth == 0 %}
            <form method="post" action="?login" name="loginform">
                <fieldset class="w500p center">
                    <h2 class="mbs txtcenter">{% trans "Login to wallabag" %}</h2>
                    {% if constant('MODE_DEMO') == 1 %}<p>{% trans "you are in demo mode, some features may be disabled." %}</p>{% endif %}
					<div class="row">
						<label class="col w150p" for="login">{% trans "Username" %}</label>
						<input class="col" type="text" id="login" name="login" placeholder="{% trans "Username" %}" tabindex="1" autofocus {% if constant('MODE_DEMO') == 1 %}value="poche"{% endif %} />
					</div>

					<div class="row">
						<label class="col w150p" for="password">{% trans "Password" %}</label>
						<input class="col" type="password" id="password" name="password" placeholder="{% trans "Password" %}" tabindex="2" {% if constant('MODE_DEMO') == 1 %}value="poche"{% endif %} />
					</div>
					<div class="row">
						
						<div class="col">
							<input type="checkbox" id="longlastingsession" name="longlastingsession" tabindex="3" /> <label for="longlastingsession">{% trans "Stay signed in" %}</label><br />
							<small class="inbl">{% trans "(Do not check on public computers)" %}</small>
						</div>
					</div>
					<div class="row mts txtcenter">
						<button class="bouton" type="submit" tabindex="4">{% trans "Sign in" %}</button>
					</div>
                </fieldset>
                <input type="hidden" name="returnurl" value="{{ referer }}">
                <input type="hidden" name="token" value="{{ token }}">
            </form>
    {% endif %}
{% endblock %}