We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 428aff1 commit e683c06Copy full SHA for e683c06
1 file changed
frontend/src/pages/login/LoginPage.tsx
@@ -122,11 +122,22 @@ function LoginForm() {
122
)}
123
124
<div className="mb-3">
125
- <TextInput placeholder={texts.common.email} autoFocus key={form.key('email')} {...form.getInputProps('email')} />
+ <TextInput
126
+ placeholder={texts.common.email}
127
+ autoFocus
128
+ key={form.key('email')}
129
+ label="username"
130
+ {...form.getInputProps('email')}
131
+ />
132
</div>
133
134
- <PasswordInput placeholder={texts.common.password} key={form.key('password')} {...form.getInputProps('password')} />
135
+ <PasswordInput
136
+ placeholder={texts.common.password}
137
+ key={form.key('password')}
138
+ label="password"
139
+ {...form.getInputProps('password')}
140
141
142
143
<Button type="submit" className="w-full">
0 commit comments