aboutsummaryrefslogtreecommitdiffhomepage
path: root/themes/default/install.twig
blob: c4da0954884dcb08dd7c12a6b2592bff76b1b3ec (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
{% extends "layout.twig" %}
{% block title %}{% trans "installation" %}{% endblock %}
{% block content %}
        <form method="post" action="?install" name="loginform">
            <fieldset class="w500p center">
                <h2 class="mbs txtcenter">{% trans "install your poche" %}</h2>
                <p>
                    {% trans "Poche is still not installed. Please fill the below form to install it. Don't hesitate to <a href='http://doc.inthepoche.com/'>read the documentation on poche website</a>." %}
                </p>
                <p class="row">
                    <label class="col w150p" for="login">{% trans "Login" %}</label>
                    <input class="col" type="text" id="login" name="login" placeholder="Login" tabindex="1" autofocus />
                </p>
                <p class="row">
                    <label class="col w150p" for="password">{% trans "Password" %}</label>
                    <input class="col" type="password" id="password" name="password" placeholder="Password" tabindex="2">
                </p>
                <p class="row">
                    <label class="col w150p" for="password_repeat">{% trans "Repeat your password" %}</label>
                    <input class="col" type="password" id="password_repeat" name="password_repeat" placeholder="Password" tabindex="3">
                </p>
                <p class="row mts txtcenter">
                    <button class="bouton" type="submit" tabindex="4">{% trans "Install" %}</button>
                </p>
            </fieldset>
            <input type="hidden" name="token" value="{{ token }}">
        </form>
{% endblock %}