| 123456789101112131415161718192021222324252627282930313233343536 |
- <div class="login animate__animated animate__zoomIn">
- <a href="/" class="u-block u-mb40">
- <img src="/images/logo.svg" alt="<?= htmlentities($_SESSION["APP_NAME"]) ?>" width="100" height="120">
- </a>
- <form id="form_login" method="post" action="/login/">
- <input type="hidden" name="token" value="<?= $_SESSION["token"] ?>">
- <h1 class="login-title">
- <?= sprintf(_("Welcome to %s"), htmlentities($_SESSION["APP_NAME"])) ?>
- </h1>
- <?php if (!empty($error)) { ?>
- <p class="error"><?= $error ?></p>
- <?php } ?>
- <div class="u-mb10">
- <label for="username" class="form-label"><?= _("Username") ?></label>
- <input type="text" class="form-control" name="user" id="username" autocomplete="username" required autofocus>
- </div>
- <div class="u-mb20">
- <label for="password" class="form-label u-side-by-side">
- <?= _("Password") ?>
- <?php if ($_SESSION["POLICY_SYSTEM_PASSWORD_RESET"] !== "no") { ?>
- <a class="login-form-link" href="/reset/">
- <?= _("Forgot Password") ?>
- </a>
- <?php } ?>
- </label>
- <input type="password" class="form-control" name="password" id="password" autocomplete="current-password" required>
- </div>
- <button type="submit" class="button">
- <i class="fas fa-right-to-bracket"></i><?= _("Next") ?>
- </button>
- </form>
- </div>
- </body>
- </html>
|