Files
hestiacp/web/templates/pages/login/login_a.php
Alexey Berezhok 346a50856b Initial
2024-03-19 22:05:27 +03:00

37 lines
1.2 KiB
PHP

<div class="login">
<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>