loginform.html 995 B

1234567891011121314151617181920212223242526
  1. <!DOCTYPE html>
  2. <html>
  3. <head>{include="includes"}</head>
  4. <body{if="ban_canLogin()"} onload="document.loginform.login.focus();"{/if}>
  5. <div id="pageheader">
  6. {include="page.header"}
  7. <div id="headerform">
  8. {if="!ban_canLogin()"}
  9. You have been banned from login after too many failed attempts. Try later.
  10. {else}
  11. <form method="post" name="loginform">
  12. Login: <input type="text" name="login" tabindex="1">&nbsp;&nbsp;&nbsp;
  13. Password : <input type="password" name="password" tabindex="2">
  14. <input type="submit" value="Login" class="bigbutton" tabindex="4"><br>
  15. <input type="checkbox" name="longlastingsession" id="longlastingsession" tabindex="3"><label for="longlastingsession">&nbsp;Stay signed in (Do not check on public computers)</label>
  16. <input type="hidden" name="token" value="{$token}">
  17. {if="$returnurl"}<input type="hidden" name="returnurl" value="{$returnurl|htmlspecialchars}">{/if}
  18. </form>
  19. {/if}
  20. </div>
  21. </div>
  22. {include="page.footer"}
  23. </body>
  24. </html>