diff options
Diffstat (limited to 'tpl/login.html')
-rw-r--r-- | tpl/login.html | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/tpl/login.html b/tpl/login.html index d3139ab3..12927692 100644 --- a/tpl/login.html +++ b/tpl/login.html | |||
@@ -1,4 +1,9 @@ | |||
1 | {include="head"} | 1 | {include="head"} |
2 | <body class="light-style"> | ||
3 | <header> | ||
4 | <h1><img src="./img/logo.png" alt="logo poche" />poche</h1> | ||
5 | </header> | ||
6 | <div id="main"> | ||
2 | <form method="post" action="?login" name="loginform"> | 7 | <form method="post" action="?login" name="loginform"> |
3 | <fieldset> | 8 | <fieldset> |
4 | <h2>login to your poche</h2> | 9 | <h2>login to your poche</h2> |
@@ -20,4 +25,7 @@ | |||
20 | <input type="hidden" name="returnurl" value="<?php echo htmlspecialchars($referer);?>"> | 25 | <input type="hidden" name="returnurl" value="<?php echo htmlspecialchars($referer);?>"> |
21 | <input type="hidden" name="token" value="<?php echo Session::getToken(); ?>"> | 26 | <input type="hidden" name="token" value="<?php echo Session::getToken(); ?>"> |
22 | </form> | 27 | </form> |
23 | {include="footer"} \ No newline at end of file | 28 | <script type="text/javascript"> |
29 | window.onload = document.loginform.login.focus(); | ||
30 | </script> | ||
31 | {include="footer"} | ||