mirror of
https://github.com/colanode/colanode.git
synced 2025-12-15 19:27: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>
|
||||
<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>
|
||||
|
||||
Reference in New Issue
Block a user