From 2f7d4f1f846ef7aa0a70476971aa541b8f4e2539 Mon Sep 17 00:00:00 2001 From: JonnyTech Date: Thu, 28 Feb 2019 14:36:45 +0000 Subject: [PATCH] Focus password input field Automatically focus the password input text field when the page loads using the HTML `autofocus` attribute. --- index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.php b/index.php index 8b7f4e1..708d591 100644 --- a/index.php +++ b/index.php @@ -31,7 +31,7 @@ if($PASSWORD) { $_SESSION['_sfm_allowed'] = true; header('Location: ?'); } - echo '
PASSWORD:
'; + echo '
PASSWORD:
'; exit; } }