♻️ Add auto-complete for login

This commit is contained in:
Meier Lukas
2023-08-10 19:53:56 +02:00
parent 76b8bbd65c
commit 30c8f5cfdf

View File

@@ -83,6 +83,7 @@ export default function LoginPage() {
<TextInput <TextInput
variant="filled" variant="filled"
label={t('form.fields.username.label')} label={t('form.fields.username.label')}
autoComplete="homarr-username"
withAsterisk withAsterisk
{...form.getInputProps('name')} {...form.getInputProps('name')}
/> />
@@ -90,6 +91,7 @@ export default function LoginPage() {
<PasswordInput <PasswordInput
variant="filled" variant="filled"
label={t('form.fields.password.label')} label={t('form.fields.password.label')}
autoComplete="homarr-password"
withAsterisk withAsterisk
{...form.getInputProps('password')} {...form.getInputProps('password')}
/> />