From 0dfe1d8afafc59c4a5559c498342668d5a58d6ef Mon Sep 17 00:00:00 2001
From: Jake Vanderwerf <get@jakevanderwerf.ca>
Date: Thu, 23 Jul 2026 22:41:41 +0000
Subject: [PATCH] =Still working away at the Integrations overhaul

---
 inc/managers/LoginManager.php |   13 ++++++++++++-
 1 files changed, 12 insertions(+), 1 deletions(-)

diff --git a/inc/managers/LoginManager.php b/inc/managers/LoginManager.php
index e971e6c..af45d49 100644
--- a/inc/managers/LoginManager.php
+++ b/inc/managers/LoginManager.php
@@ -222,12 +222,14 @@
 						'subtype' => 'password',
 						'label' => __('New Password', 'jvb'),
 						'required' => true,
+						'autocomplete'=> 'new-password'
 					],
 					'pass2' => [
 						'type' => 'text',
 						'subtype' => 'password',
 						'label' => __('Confirm Password', 'jvb'),
 						'required' => true,
+						'autocomplete'=> 'new-password'
 					],
 				];
 				break;
@@ -656,10 +658,19 @@
 			$additionalInputs,
 			$fields,
 			$turnstile,
-			$this->labels['submit']??'Login',
+			$this->labels['submit']??$this->determineSubmit($action),
 			$magicLink
 		);
 	}
+		protected function determineSubmit(string $action):string
+		{
+			return match($action) {
+				'rp','resetpass' => 'Reset Password',
+				'register' => 'Register',
+				'lostpassword' => 'Send me a reset link',
+				default => 'Login',
+			};
+		}
 	protected function renderHeader():void
     {
     ?>

--
Gitblit v1.10.0