Add password placeholder for confirm input in register (#185)

This commit is contained in:
Hakan Shehu
2025-08-08 14:36:59 +02:00
committed by GitHub
parent 84f7cb70f0
commit 91073c41b7

View File

@@ -135,7 +135,12 @@ export const EmailRegister = ({ onSuccess, onLogin }: EmailRegisterProps) => {
<FormItem>
<Label htmlFor="confirmPassword">Confirm Password</Label>
<FormControl>
<Input type="password" {...field} autoComplete="new-password" />
<Input
type="password"
{...field}
autoComplete="new-password"
placeholder="********"
/>
</FormControl>
<FormMessage />
</FormItem>