Skip to content

Commit

Permalink
fix(login): wrong input name
Browse files Browse the repository at this point in the history
Signed-off-by: Robert Goniszewski <[email protected]>
  • Loading branch information
goniszewski committed Sep 13, 2024
1 parent 56c133c commit 1ef1246
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/routes/login/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export let form: HTMLFormElement;
</label>
<input
type="text"
name="username"
name="login"
placeholder="Type here"
class={`input input-bordered w-full max-w-xs ${
form?.invalid || (form?.missing && form?.login) ? 'input-error' : ''
Expand Down

0 comments on commit 1ef1246

Please sign in to comment.