diff options
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 | ||