If login key is set and it is not provided show Client Email instead of just Email for placeholder

This commit is contained in:
johnnyq 2025-12-14 13:42:38 -05:00
parent 312eb4dffc
commit 32f996d034
1 changed files with 7 additions and 4 deletions

View File

@ -232,7 +232,7 @@ if ($_SERVER['REQUEST_METHOD'] === 'POST' && (isset($_POST['login']) || isset($_
// If no/incorrect 'key' is supplied, send to client portal instead // If no/incorrect 'key' is supplied, send to client portal instead
if ($config_login_key_required) { if ($config_login_key_required) {
if (!isset($_GET['key']) || $_GET['key'] !== $config_login_key_secret) { if (!isset($_GET['key']) || $_GET['key'] !== $config_login_key_secret) {
redirect("client"); redirect();
} }
} }
@ -515,9 +515,12 @@ if ($_SERVER['REQUEST_METHOD'] === 'POST' && (isset($_POST['login']) || isset($_
<form method="post"> <form method="post">
<div class="input-group mb-3" <?php if (isset($token_field) && $token_field) { echo "hidden"; } ?>> <div class="input-group mb-3" <?php if (isset($token_field) && $token_field) { echo "hidden"; } ?>>
<input type="text" class="form-control" placeholder="Email" name="email" <input type="text" class="form-control"
placeholder="<?php if ($config_login_key_required) { if (!isset($_GET['key']) || $_GET['key'] !== $config_login_key_secret) { echo "Client "; } } echo "Email"; ?>"
name="email"
value="<?php echo htmlspecialchars($email ?? '', ENT_QUOTES); ?>" value="<?php echo htmlspecialchars($email ?? '', ENT_QUOTES); ?>"
required <?php if (!isset($token_field) || !$token_field) { echo "autofocus"; } ?> > required <?php if (!isset($token_field) || !$token_field) { echo "autofocus"; } ?>
>
<div class="input-group-append"> <div class="input-group-append">
<div class="input-group-text"> <div class="input-group-text">
<span class="fas fa-envelope"></span> <span class="fas fa-envelope"></span>