diff options
author | nicosomb <nicolas@loeuillet.org> | 2013-04-18 15:47:06 +0200 |
---|---|---|
committer | nicosomb <nicolas@loeuillet.org> | 2013-04-18 15:47:06 +0200 |
commit | eac33d55de57d4b4677979a9e596fe5fce80590a (patch) | |
tree | 7480def8e5a86041fde6d1ed499d86d17abe702e | |
parent | e4d2565e05a517641de921c4c19a2c9d1beea2e7 (diff) | |
download | wallabag-eac33d55de57d4b4677979a9e596fe5fce80590a.tar.gz wallabag-eac33d55de57d4b4677979a9e596fe5fce80590a.tar.zst wallabag-eac33d55de57d4b4677979a9e596fe5fce80590a.zip |
mise en page login
-rw-r--r-- | tpl/login.html | 30 |
1 files changed, 19 insertions, 11 deletions
diff --git a/tpl/login.html b/tpl/login.html index 024b3fd0..bf0f4fa6 100644 --- a/tpl/login.html +++ b/tpl/login.html | |||
@@ -1,13 +1,21 @@ | |||
1 | <form method="post" action="?login" name="loginform"> | 1 | <form method="post" action="?login" name="loginform"> |
2 | <fieldset> | 2 | <fieldset> |
3 | <h2>login to your poche</h2> | 3 | <h2>login to your poche</h2> |
4 | <ul id="login"> | 4 | <ul id="login"> |
5 | <li><label for="login">Login</label> <input type="text" id="login" name="login" placeholder="Login" tabindex="1"></li> | 5 | <li> |
6 | <li><label for="password">Password</label> <input type="password" id="password" name="password" placeholder="Password" tabindex="2"></li> | 6 | <label for="login">Login</label> <input type="text" id="login" name="login" placeholder="Login" tabindex="1"> |
7 | <li><label><input type="checkbox" name="longlastingsession" tabindex="3"> Stay signed in (Do not check on public computers)</label></li> | 7 | </li> |
8 | <li><button type="submit" tabindex="4">Sign in</button></li> | 8 | <li> |
9 | </ul> | 9 | <label for="password">Password</label> <input type="password" id="password" name="password" placeholder="Password" tabindex="2"> |
10 | </fieldset> | 10 | </li> |
11 | <input type="hidden" name="returnurl" value="<?php echo htmlspecialchars($referer);?>"> | 11 | <li> |
12 | <input type="hidden" name="token" value="<?php echo Session::getToken(); ?>"> | 12 | <label><input type="checkbox" name="longlastingsession" tabindex="3"> Stay signed in (Do not check on public computers)</label> |
13 | </li> | ||
14 | <li> | ||
15 | <button type="submit" tabindex="4">Sign in</button> | ||
16 | </li> | ||
17 | </ul> | ||
18 | </fieldset> | ||
19 | <input type="hidden" name="returnurl" value="<?php echo htmlspecialchars($referer);?>"> | ||
20 | <input type="hidden" name="token" value="<?php echo Session::getToken(); ?>"> | ||
13 | </form> \ No newline at end of file | 21 | </form> \ No newline at end of file |