<?php

use mystic\forum\Messaging;
use mystic\forum\utils\RequestUtils;

$lastFormUri = "";
$lastForm = RequestUtils::getLastForm($lastFormUri) ?? [];
if ($lastFormUri !== $_SERVER["REQUEST_URI"]) $lastForm = [];
RequestUtils::clearLastForm();

?>
<div class="page-header margin-top-0">
    <h1><?= __("Log in") ?></h1>
</div>
<div class="col-md-4"></div>
<div class="well col-md-4">
<?php
if (($_formError = RequestUtils::getAndClearFormError("login")) !== null) {
    _view("alert_error", ["message" => $_formError]);
}
?>
<form action="<?= htmlentities($_SERVER["REQUEST_URI"]) ?>" method="post">
<input type="hidden" name="form_id" value="login">
<input type="hidden" name="token" value="<?= htmlentities($token) ?>">
<input type="hidden" name="sig" value="<?= htmlentities($signature) ?>">
<div class="form-group">
    <label for="i_username"><?= __("Username:") ?></label>
    <input class="form-control" type="text" id="i_username" name="username" value="<?= htmlentities($lastForm["username"] ?? "") ?>" required autofocus>
</div>

<div class="form-group">
    <label for="i_password"><?= __("Password:") ?></label>
    <input class="form-control" type="password" id="i_password" name="password" required>
</div>

<div class="form-group">
    <button class="btn btn-primary" type="submit"><?= __("Log in") ?></button>
    <a class="btn btn-link" href="?_action=pwreset"><?= __("I forgot my password") ?></a>
</div>

<?php if (REGISTRATION_ENABLED): ?>
<div class="form-group">
    <?= __("Don't have an account? %link%Register now%/link%", [
        "link" => '<a href="?_action=register">',
        "/link" => '</a>',
    ]) ?>
</div>
<?php endif; ?>
</form>
</div>
<div class="col-md-4"></div>