diff --git a/AppImage/components/auth-setup.tsx b/AppImage/components/auth-setup.tsx index fd269c1..672cf11 100644 --- a/AppImage/components/auth-setup.tsx +++ b/AppImage/components/auth-setup.tsx @@ -129,15 +129,15 @@ export function AuthSetup({ onComplete }: AuthSetupProps) { return ( - + {step === "choice" ? ( -
+

Protect Your Dashboard?

-

+

Add an extra layer of security to protect your Proxmox data when accessing from non-private networks.

@@ -161,13 +161,13 @@ export function AuthSetup({ onComplete }: AuthSetupProps) {

You can always enable this later in Settings

) : ( -
+

Setup Authentication

-

Create a username and password to protect your dashboard

+

Create a username and password to protect your dashboard

{error && ( @@ -179,7 +179,9 @@ export function AuthSetup({ onComplete }: AuthSetupProps) {
- +
setUsername(e.target.value)} - className="pl-10" + className="pl-10 text-base" disabled={loading} + autoComplete="username" />
- +
setPassword(e.target.value)} - className="pl-10" + className="pl-10 text-base" disabled={loading} + autoComplete="new-password" />
- +
setConfirmPassword(e.target.value)} - className="pl-10" + className="pl-10 text-base" disabled={loading} + autoComplete="new-password" />
diff --git a/AppImage/components/login.tsx b/AppImage/components/login.tsx index 38f3aac..eabcd3c 100644 --- a/AppImage/components/login.tsx +++ b/AppImage/components/login.tsx @@ -95,7 +95,9 @@ export function Login({ onLogin }: LoginProps) { )}
- +
setUsername(e.target.value)} - className="pl-10" + className="pl-10 text-base" disabled={loading} autoComplete="username" /> @@ -112,7 +114,9 @@ export function Login({ onLogin }: LoginProps) {
- +
setPassword(e.target.value)} - className="pl-10" + className="pl-10 text-base" disabled={loading} autoComplete="current-password" />