Oppaitime's version of Gazelle
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

login.php 1.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. <? View::show_header('Login'); ?>
  2. <span id="no-cookies" class="hidden warning">You appear to have cookies disabled.<br /><br /></span>
  3. <noscript><span class="warning"><?=SITE_NAME?> requires JavaScript to function properly. Please enable JavaScript in your browser.</span><br /><br /></noscript>
  4. <?
  5. if (!$Banned) {
  6. ?>
  7. <form class="auth_form" name="login" id="loginform" method="post" action="login.php">
  8. <?
  9. if (isset($Err)) {
  10. ?>
  11. <span class="warning"><?=$Err?><br /><br /></span>
  12. <? } ?>
  13. <? if ($Attempts > 0) { ?>
  14. You have <span class="info"><?=(6 - $Attempts)?></span> attempts remaining.<br /><br />
  15. <strong>WARNING:</strong> You will be banned for 6 hours after your login attempts run out!<br /><br />
  16. <? } ?>
  17. <table class="layout">
  18. <tr>
  19. <td colspan="2">
  20. <input type="text" autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false" name="username" id="username" class="inputtext" required="required" maxlength="20" pattern="[A-Za-z0-9_?]{1,20}" autofocus="autofocus" placeholder="Username" size="40" />
  21. </td>
  22. </tr>
  23. <tr>
  24. <td>
  25. <input type="password" name="password" id="password" class="inputtext" required="required" maxlength="307200" pattern=".{6,307200}" placeholder="Password" />
  26. </td>
  27. <td>
  28. <input type="text" name="twofa" id="twofa" class="inputtext" maxlength="6" pattern="[0-9]{6}" inputmode="numeric" placeholder="2FA" size="6" title="Leave blank if you have not enabled 2FA" />
  29. </td>
  30. </tr>
  31. <tr>
  32. <td colspan="2">
  33. <input type="submit" name="login" value="Log in" class="submit" />
  34. </td>
  35. </tr>
  36. </table>
  37. </form>
  38. <?
  39. } else {
  40. ?>
  41. <span class="warning">You are banned from logging in for a few hours.</span>
  42. <?
  43. }
  44. if ($Attempts > 0) {
  45. ?>
  46. <br /><br />
  47. Forgot your password? <a href="login.php?act=recover" class="tooltip" title="Recover your password" style="text-decoration: underline;">Reset it here!</a>
  48. <?
  49. }
  50. View::show_footer(); ?>