1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- <? View::show_header('Login'); ?>
- <span id="no-cookies" class="hidden warning">You appear to have cookies disabled.<br /><br /></span>
- <noscript><span class="warning"><?=SITE_NAME?> requires JavaScript to function properly. Please enable JavaScript in your browser.</span><br /><br /></noscript>
- <?
- if (!$Banned) {
- ?>
- <form class="auth_form" name="login" id="loginform" method="post" action="login.php">
- <?
- if (isset($Err)) {
- ?>
- <span class="warning"><?=$Err?><br /><br /></span>
- <? } ?>
- <? if ($Attempts > 0) { ?>
- You have <span class="info"><?=(6 - $Attempts)?></span> attempts remaining.<br /><br />
- <strong>WARNING:</strong> You will be banned for 6 hours after your login attempts run out!<br /><br />
- <? } ?>
- <table class="layout">
- <tr>
- <td>Username </td>
- <td colspan="2">
- <input type="text" name="username" id="username" class="inputtext" required="required" maxlength="20" pattern="[A-Za-z0-9_?]{1,20}" autofocus="autofocus" placeholder="Username" />
- </td>
- </tr>
- <tr>
- <td>Password </td>
- <td colspan="2">
- <input type="password" name="password" id="password" class="inputtext" required="required" maxlength="307200" pattern=".{6,307200}" placeholder="Password" />
- </td>
- </tr>
- <tr>
- <td></td>
- <td>
- <input type="checkbox" id="keeplogged" name="keeplogged" value="1"<?=(isset($_REQUEST['keeplogged']) && $_REQUEST['keeplogged']) ? ' checked="checked"' : ''?> />
- <label for="keeplogged">Remember me</label>
- </td>
- <td><input type="submit" name="login" value="Log in" class="submit" /></td>
- </tr>
- </table>
- </form>
- <?
- } else {
- ?>
- <span class="warning">You are banned from logging in for a few hours.</span>
- <?
- }
-
- if ($Attempts > 0) {
- ?>
- <br /><br />
- Forgot your password? <a href="login.php?act=recover" class="tooltip" title="Recover your password" style="text-decoration: underline;">Reset it here!</a>
- <?
- }
- ?>
- <script type="text/javascript">
- cookie.set('cookie_test', 1, 1);
- if (cookie.get('cookie_test') != null) {
- cookie.del('cookie_test');
- } else {
- $('#no-cookies').gshow();
- }
- </script>
- <? View::show_footer(); ?>
|