<?php

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

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

?>
<h1>Register</h1>
<div class="col-md-4"></div>
<div class="well col-md-4">
<?php
if (($_formError = RequestUtils::getAndClearFormError()) !== null) {
    _view("alert_error", ["message" => $_formError]);
}
?>
<form action="<?= htmlentities($_SERVER["REQUEST_URI"]) ?>" method="post">
<div class="form-group">
    <label for="i_username">Username:</label>
    <input class="form-control" id="i_username" type="text" name="username" value="<?= htmlentities($lastForm["username"] ?? "") ?>" required>
</div>

<div class="form-group">
    <label for="i_display_name">Display name:</label>
    <input class="form-control" id="i_display_name" type="text" name="display_name" value="<?= htmlentities($lastForm["display_name"] ?? "") ?>" required>
</div>

<div class="form-group">
    <label for="i_password">Choose password:</label>
    <input class="form-control" id="i_password" type="password" name="password" required>
</div>

<div class="form-group">
    <label for="i_password_retype">Repeat password:</label>
    <input class="form-control" id="i_password_retype" type="password" name="password_retype" required>
</div>

<div class="form-group">
    <label for="i_email">Email address:</label>
    <input class="form-control" id="i_email" type="email" name="email" value="<?= htmlentities($lastForm["email"] ?? "") ?>" required>
</div>

<div class="form-group">
    <button class="btn btn-default" type="submit">Register now</button>
</div>

<div class="form-group">
    Already have an account? <a href="?_action=auth">Sign in now</a>
</div>
</form>
</div>
<div class="col-md-4"></div>