= (props)
class={controlClass('shadow-sm')}
required
disabled={loading()}
- minLength={8}
+ minLength={12}
/>
- Minimum 8 characters
+ Minimum 12 characters
diff --git a/frontend-modern/src/components/Settings/QuickSecuritySetup.tsx b/frontend-modern/src/components/Settings/QuickSecuritySetup.tsx
index 4e00f05..f7e30d3 100644
--- a/frontend-modern/src/components/Settings/QuickSecuritySetup.tsx
+++ b/frontend-modern/src/components/Settings/QuickSecuritySetup.tsx
@@ -61,8 +61,8 @@ export const QuickSecuritySetup: Component = (props) =>
const setupSecurity = async () => {
// Validate custom password if using
if (useCustomPassword()) {
- if (customPassword().length < 8) {
- showError('Password must be at least 8 characters');
+ if (customPassword().length < 12) {
+ showError('Password must be at least 12 characters');
return;
}
if (customPassword() !== confirmPassword()) {
@@ -267,7 +267,7 @@ Important:
/>
-
+