fix: demo login page (#15616)

This commit is contained in:
Jason Rasmussen 2025-01-24 12:39:06 -05:00 committed by GitHub
parent ec7ab209f3
commit ede9c99adb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -116,11 +116,11 @@
{/if} {/if}
<Field label={$t('email')}> <Field label={$t('email')}>
<Input name="email" type="email" autocomplete="email" bind:value={email} /> <Input id="email" name="email" type="email" autocomplete="email" bind:value={email} />
</Field> </Field>
<Field label={$t('password')}> <Field label={$t('password')}>
<PasswordInput bind:value={password} autocomplete="current-password" /> <PasswordInput id="password" bind:value={password} autocomplete="current-password" />
</Field> </Field>
<Button type="submit" size="large" shape="round" fullWidth {loading} class="mt-6">{$t('to_login')}</Button> <Button type="submit" size="large" shape="round" fullWidth {loading} class="mt-6">{$t('to_login')}</Button>