mirror of
https://github.com/documenso/documenso.git
synced 2025-11-15 17:21:41 +10:00
feat: add autocomplete for password managers
This commit is contained in:
@ -98,6 +98,7 @@ export const PasswordForm = ({ className }: PasswordFormProps) => {
|
||||
type="password"
|
||||
minLength={6}
|
||||
maxLength={72}
|
||||
autoComplete="new-password"
|
||||
className="bg-background mt-2"
|
||||
{...register('password')}
|
||||
/>
|
||||
@ -115,6 +116,7 @@ export const PasswordForm = ({ className }: PasswordFormProps) => {
|
||||
type="password"
|
||||
minLength={6}
|
||||
maxLength={72}
|
||||
autoComplete="new-password"
|
||||
className="bg-background mt-2"
|
||||
{...register('repeatedPassword')}
|
||||
/>
|
||||
|
||||
Reference in New Issue
Block a user