mirror of
https://github.com/colanode/colanode.git
synced 2025-12-16 19:57:46 +01:00
Add password placeholder for confirm input in register (#185)
This commit is contained in:
@@ -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>
|
||||||
|
|||||||
Reference in New Issue
Block a user