diff options
author | Jonas Kohl | 2024-09-19 11:28:12 +0200 |
---|---|---|
committer | Jonas Kohl | 2024-09-19 11:28:12 +0200 |
commit | 35db6e71fc7196af1757be17d2a3919246476683 (patch) | |
tree | 07e7c6ddd3260cdbe7e662f434f1407a37c832d1 /src/application/views/form_new_password.php | |
parent | 01454544896827113e49db0d2848b5aab6ce14ae (diff) |
Add password reset
Diffstat (limited to 'src/application/views/form_new_password.php')
-rw-r--r-- | src/application/views/form_new_password.php | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/src/application/views/form_new_password.php b/src/application/views/form_new_password.php new file mode 100644 index 0000000..7431bd5 --- /dev/null +++ b/src/application/views/form_new_password.php @@ -0,0 +1,38 @@ +<?php + +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><?= __("Reset password") ?></h1> +</div> +<div class="col-md-4"></div> +<div class="well col-md-4"> +<?php +if (($_formError = RequestUtils::getAndClearFormError("pwnew")) !== null) { + _view("alert_error", ["message" => $_formError]); +} +?> +<form action="<?= htmlentities($_SERVER["REQUEST_URI"]) ?>" method="post"> +<input type="hidden" name="form_id" value="pwnew"> +<div class="form-group"> + <label for="i_new_password"><?= __("New password:") ?></label> + <input class="form-control" type="password" id="i_new_password" name="new_password" required autofocus> +</div> + +<div class="form-group"> + <label for="i_retype_password"><?= __("Retype password:") ?></label> + <input class="form-control" type="password" id="i_retype_password" name="retype_password" required> +</div> + +<div class="form-group"> + <button class="btn btn-primary" type="submit"><?= __("Set new password") ?></button> +</div> +</form> +</div> +<div class="col-md-4"></div> |