aboutsummaryrefslogtreecommitdiffhomepage
path: root/app/Resources/views/default/install.twig
diff options
context:
space:
mode:
authorJeremy <jeremy.benoist@gmail.com>2015-03-01 08:22:29 +0100
committerJeremy <jeremy.benoist@gmail.com>2015-03-01 10:49:17 +0100
commit495aecfe7417918c45d8ea32b1ee8903018449cd (patch)
treef79e2d133e66108b3e0e814dc206d09344e72df0 /app/Resources/views/default/install.twig
parent71798e4ec428d03b1ce7116ae918a05a2d9b5044 (diff)
downloadwallabag-495aecfe7417918c45d8ea32b1ee8903018449cd.tar.gz
wallabag-495aecfe7417918c45d8ea32b1ee8903018449cd.tar.zst
wallabag-495aecfe7417918c45d8ea32b1ee8903018449cd.zip
Cleanup & simplify theme
Diffstat (limited to 'app/Resources/views/default/install.twig')
-rw-r--r--app/Resources/views/default/install.twig28
1 files changed, 0 insertions, 28 deletions
diff --git a/app/Resources/views/default/install.twig b/app/Resources/views/default/install.twig
deleted file mode 100644
index c89c7e47..00000000
--- a/app/Resources/views/default/install.twig
+++ /dev/null
@@ -1,28 +0,0 @@
1{% extends "layout.twig" %}
2{% block title %}{% trans "installation" %}{% endblock %}
3{% block content %}
4 <form method="post" action="?install" name="loginform">
5 <fieldset class="w500p center">
6 <h2 class="mbs txtcenter">{% trans "install your wallabag" %}</h2>
7 <p>
8 {% trans "wallabag is still not installed. Please fill the below form to install it. Don't hesitate to <a href='http://doc.wallabag.org/'>read the documentation on wallabag website</a>." %}
9 </p>
10 <p class="row">
11 <label class="col w150p" for="login">{% trans "Login" %}</label>
12 <input class="col" type="text" id="login" name="login" placeholder="Login" tabindex="1" autofocus />
13 </p>
14 <p class="row">
15 <label class="col w150p" for="password">{% trans "Password" %}</label>
16 <input class="col" type="password" id="password" name="password" placeholder="Password" tabindex="2">
17 </p>
18 <p class="row">
19 <label class="col w150p" for="password_repeat">{% trans "Repeat your password" %}</label>
20 <input class="col" type="password" id="password_repeat" name="password_repeat" placeholder="Password" tabindex="3">
21 </p>
22 <p class="row mts txtcenter">
23 <button class="bouton" type="submit" tabindex="4">{% trans "Install" %}</button>
24 </p>
25 </fieldset>
26 <input type="hidden" name="token" value="{{ token }}">
27 </form>
28{% endblock %}