edit login on website

This commit is contained in:
Frank Harris 2025-12-05 14:49:53 -05:00
parent af56dd11d9
commit baf92ab1ff
2 changed files with 2 additions and 2 deletions

View file

@ -71,7 +71,7 @@ $error_message = '';
$success_message = '';
// Process login form submission: simplified for debugging
if ($_SERVER['REQUEST_METHOD'] === 'POST' && isset($_POST['login'])) {
if ($_SERVER['REQUEST_METHOD'] === 'POST') {
$username = trim($_POST['ulogin'] ?? '');
$password = $_POST['upassword'] ?? '';
if ($username === '' || $password === '') {

View file

@ -1 +1 @@
Last Updated at 7:25am on 2025-15-11
Last Updated at 3:15pm on 2025-12-05