mirror of
https://github.com/immich-app/immich
synced 2026-08-15 13:03:57 +00:00
chore(web): make login page email and password required (#29068)
This commit is contained in:
parent
46631b3786
commit
a97e5999e4
1 changed files with 2 additions and 2 deletions
|
|
@ -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>
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue