Improve key inputs

This commit is contained in:
Cooper Dalrymple
2026-06-19 12:05:01 -05:00
parent 322a9d95bd
commit 099382680f
2 changed files with 8 additions and 3 deletions
+6 -1
View File
@@ -278,7 +278,9 @@ final class Settings {
args: [ args: [
'name' => 'site_key', 'name' => 'site_key',
'description' => Plugin::__('Provide your Cap site key.'), 'description' => Plugin::__('Provide your Cap site key.'),
'type' => 'password', 'attributes' => [
'autocomplete' => 'off',
],
] ]
); );
@@ -291,6 +293,9 @@ final class Settings {
'name' => 'secret_key', 'name' => 'secret_key',
'description' => Plugin::__('Provide your Cap secret key.'), 'description' => Plugin::__('Provide your Cap secret key.'),
'type' => 'password', 'type' => 'password',
'attributes' => [
'autocomplete' => 'off',
],
] ]
); );
+2 -2
View File
@@ -1,12 +1,12 @@
{ {
"name": "cleverogre/ogre-captcha", "name": "cleverogre/ogre-captcha",
"version": "1.2.3", "version": "1.2.4",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "cleverogre/ogre-captcha", "name": "cleverogre/ogre-captcha",
"version": "1.2.3", "version": "1.2.4",
"license": "GPL-3.0+", "license": "GPL-3.0+",
"devDependencies": { "devDependencies": {
"gulp": "^5.0.0", "gulp": "^5.0.0",