summaryrefslogtreecommitdiff
path: root/src/application/views/form_login.php
diff options
context:
space:
mode:
authorJonas Kohl <git@jonaskohl.de>2024-09-19 11:28:12 +0200
committerJonas Kohl <git@jonaskohl.de>2024-09-19 11:28:12 +0200
commit35db6e71fc7196af1757be17d2a3919246476683 (patch)
tree07e7c6ddd3260cdbe7e662f434f1407a37c832d1 /src/application/views/form_login.php
parent01454544896827113e49db0d2848b5aab6ce14ae (diff)
Add password reset
Diffstat (limited to 'src/application/views/form_login.php')
-rw-r--r--src/application/views/form_login.php3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/application/views/form_login.php b/src/application/views/form_login.php
index 1c4a9ea..acef1ff 100644
--- a/src/application/views/form_login.php
+++ b/src/application/views/form_login.php
@@ -21,6 +21,8 @@ if (($_formError = RequestUtils::getAndClearFormError("login")) !== null) {
?>
<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>
@@ -33,6 +35,7 @@ if (($_formError = RequestUtils::getAndClearFormError("login")) !== null) {
<div class="form-group">
<button class="btn btn-primary" type="submit"><?= __("Log in") ?></button>
+ <a href="?_action=pwreset"><?= __("I forgot my password") ?></a>
</div>
<div class="form-group">