Skip to content

Commit 6ec80c7

Browse files
committed
change login form char limit
1 parent 44ea745 commit 6ec80c7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/components/forms/loginForm.svelte

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,8 @@
5757
<Form on:submit={ submit } bind:this={ formElement }>
5858
<h1> Anmeldung für Teammitglieder </h1>
5959

60-
<Input bind:value={ login.username } placeholder="E-Mail" required minlength="4" maxlength="16" />
61-
<Input bind:value={ login.password } type="password" placeholder="Passwort" required minlength="8" maxlength="1024" />
60+
<Input bind:value={ login.username } placeholder="E-Mail" required minlength="4" maxlength="256" />
61+
<Input bind:value={ login.password } type="password" placeholder="Passwort" required minlength="8" maxlength="2024" />
6262

6363
<Button { loading }> Anmelden </Button>
6464
</Form>

0 commit comments

Comments
 (0)