diff options
author | nicosomb <nicolas@loeuillet.org> | 2013-04-18 15:39:34 +0200 |
---|---|---|
committer | nicosomb <nicolas@loeuillet.org> | 2013-04-18 15:39:34 +0200 |
commit | e4d2565e05a517641de921c4c19a2c9d1beea2e7 (patch) | |
tree | 156715bc739b2810368c717f20f03172955c32a1 /tpl/login.html | |
parent | b693a19e1c3d4ffcf2f3aaef1d67df4b986e4903 (diff) | |
download | wallabag-e4d2565e05a517641de921c4c19a2c9d1beea2e7.tar.gz wallabag-e4d2565e05a517641de921c4c19a2c9d1beea2e7.tar.zst wallabag-e4d2565e05a517641de921c4c19a2c9d1beea2e7.zip |
#4 - ajout système de connexion (login poche mot de passe poche pour l'instant)
Diffstat (limited to 'tpl/login.html')
-rw-r--r-- | tpl/login.html | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/tpl/login.html b/tpl/login.html new file mode 100644 index 00000000..024b3fd0 --- /dev/null +++ b/tpl/login.html | |||
@@ -0,0 +1,13 @@ | |||
1 | <form method="post" action="?login" name="loginform"> | ||
2 | <fieldset> | ||
3 | <h2>login to your poche</h2> | ||
4 | <ul id="login"> | ||
5 | <li><label for="login">Login</label> <input type="text" id="login" name="login" placeholder="Login" tabindex="1"></li> | ||
6 | <li><label for="password">Password</label> <input type="password" id="password" name="password" placeholder="Password" tabindex="2"></li> | ||
7 | <li><label><input type="checkbox" name="longlastingsession" tabindex="3"> Stay signed in (Do not check on public computers)</label></li> | ||
8 | <li><button type="submit" tabindex="4">Sign in</button></li> | ||
9 | </ul> | ||
10 | </fieldset> | ||
11 | <input type="hidden" name="returnurl" value="<?php echo htmlspecialchars($referer);?>"> | ||
12 | <input type="hidden" name="token" value="<?php echo Session::getToken(); ?>"> | ||
13 | </form> \ No newline at end of file | ||