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> <FormItem>
<Label htmlFor="confirmPassword">Confirm Password</Label> <Label htmlFor="confirmPassword">Confirm Password</Label>
<FormControl> <FormControl>
<Input type="password" {...field} autoComplete="new-password" /> <Input
type="password"
{...field}
autoComplete="new-password"
placeholder="********"
/>
</FormControl> </FormControl>
<FormMessage /> <FormMessage />
</FormItem> </FormItem>