chore(web): make login page email and password required (#29068)

This commit is contained in:
Mees Frensel 2026-06-15 13:34:49 +02:00 committed by GitHub
parent 46631b3786
commit a97e5999e4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -141,11 +141,11 @@
<Alert color="danger" title={errorMessage} closable />
{/if}
<Field label={$t('email')}>
<Field label={$t('email')} required="indicator">
<Input id="email" name="email" type="email" autocomplete="email" bind:value={email} />
</Field>
<Field label={$t('password')}>
<Field label={$t('password')} required="indicator">
<PasswordInput id="password" bind:value={password} autocomplete="current-password" />
</Field>