summaryrefslogtreecommitdiff
path: root/src/application/views/form_password_reset.php
diff options
context:
space:
mode:
authorJonas Kohl2024-10-17 10:56:01 +0200
committerJonas Kohl2024-10-17 10:56:01 +0200
commitfe0f414dc0211a4014581dc03fcfd514ed7ed02d (patch)
treecd86fc00cd9b7a97eabb9668e0a39e2b4b3e5357 /src/application/views/form_password_reset.php
parente0e89b9fdbf301e0ead944636023947a67aca57d (diff)
Transition templating to Twig
Diffstat (limited to 'src/application/views/form_password_reset.php')
-rw-r--r--src/application/views/form_password_reset.php41
1 files changed, 0 insertions, 41 deletions
diff --git a/src/application/views/form_password_reset.php b/src/application/views/form_password_reset.php
deleted file mode 100644
index 57d8ed2..0000000
--- a/src/application/views/form_password_reset.php
+++ /dev/null
@@ -1,41 +0,0 @@
-<?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><?= __("Reset password") ?></h1>
-</div>
-<div class="col-md-4"></div>
-<div class="well col-md-4">
-<?php
-if (($_formError = RequestUtils::getAndClearFormError("pwreset")) !== null) {
- _view("alert_error", ["message" => $_formError]);
-}
-?>
-<form action="<?= htmlentities($_SERVER["REQUEST_URI"]) ?>" method="post">
-<input type="hidden" name="form_id" value="pwreset">
-<div class="form-group">
- <label for="i_username"><?= __("Email address:") ?></label>
- <input class="form-control" type="email" id="i_email" name="email" value="<?= htmlentities($lastForm["email"] ?? "") ?>" required autofocus>
-</div>
-
-<div class="form-group">
- <button class="btn btn-primary" type="submit"><?= __("Reset password") ?></button>
-</div>
-
-<div class="form-group">
- <?= __("I know my password and I want to %link%log in%/link%!", [
- "link" => '<a href="?_action=auth">',
- "/link" => '</a>',
- ]) ?>
-</div>
-</form>
-</div>
-<div class="col-md-4"></div>