fix: turn off autoComplete for some inputs

This commit is contained in:
Tobias Barsnes
2024-12-25 03:23:02 +01:00
parent e035062a10
commit d8dbdb2b9e
4 changed files with 19 additions and 12 deletions

View File

@@ -159,7 +159,11 @@ export const AddRegistry = () => {
<FormItem>
<FormLabel>Username</FormLabel>
<FormControl>
<Input placeholder="Username" {...field} />
<Input
placeholder="Username"
autoComplete="off"
{...field}
/>
</FormControl>
<FormMessage />
@@ -177,6 +181,7 @@ export const AddRegistry = () => {
<FormControl>
<Input
placeholder="Password"
autoComplete="off"
{...field}
type="password"
/>