From c204185ae86a98994f80010abf35a190c9406739 Mon Sep 17 00:00:00 2001
From: Jake Vanderwerf <get@jakevanderwerf.ca>
Date: Sun, 12 Jul 2026 18:08:19 +0000
Subject: [PATCH] =Refactor of Integrations.php. Separated different functionality into traits that classes can use to add that functionality. Hopefully will make maintaining it a little easier. Still have to finish up, as well as refactoring the individual classes to utilize the new system.
---
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