12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- <?php
- declare(strict_types=1);
-
- View::show_header('Login'); ?>
-
- <p class="center mouseless">
- A platform to share <strong>biological sequence</strong><br />
- and <strong>medical imaging</strong> data<?= ($Attempts > 0) ? '' : '<sup>1</sup>' ?>
- </p>
-
- <p id="no-cookies" class="hidden error">You appear to have cookies disabled.</p>
-
- <?php
- if (!$Banned) { ?>
- <form class="auth_form" name="login" id="loginform" method="post" action="login.php">
-
- <?php
- if (isset($Err)) { ?>
- <p class="error">
- <?= $Err ?>
- </p>
- <?php } ?>
-
- <?php
- if ($Attempts > 0) { ?>
- <aside class="notice">
- <p>
- You have
- <span class="info"><?= (6 - $Attempts) ?></span>
- attempts remaining.
- </p>
-
- <p>
- <strong>You'll be banned for 6 hours after your login attempts run out!</strong>
- </p>
- </aside>
- <?php } ?>
-
- <table>
- <tr>
- <td colspan="2">
- <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" autocomplete="username" />
- </td>
- </tr>
-
- <tr>
- <td>
- <?= Input::passphrase() ?>
- </td>
-
- <td>
- <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"
- autocomplete="one-time-code" />
- </td>
- </tr>
-
- <tr>
- <td colspan="2">
- <input type="submit" name="login" value="Log In" class="submit" />
- </td>
- </tr>
- </table>
- </form>
-
- <?php
- } # if !$Banned
- else { ?>
- <p class="error">
- You're banned from logging in for a few hours.
- </p>
- <?php
- }
-
- if ($Attempts > 0) { ?>
- <p class="center">
- Forgot your password?
- <a href="login.php?act=recover" class="tooltip" title="Recover your password">Reset it here!</a>
- </p>
-
- <?php
- } else {
- echo $HTML = <<<HTML
- <p class="center mouseless">
- 1. …and graphs, scalars, vectors, patterns,
- <br />
- constraints, models, and more
- </p>
- HTML;
- }
-
- View::show_footer();
|