mirror of
https://github.com/inventree/InvenTree
synced 2024-08-30 18:33:04 +00:00
Fix placeholder text values (#6223)
This commit is contained in:
parent
a04b22b090
commit
213a63318d
@ -89,7 +89,7 @@ export function AuthenticationForm() {
|
||||
<TextInput
|
||||
required
|
||||
label={t`Username`}
|
||||
placeholder="reader"
|
||||
placeholder={t`Your username`}
|
||||
{...classicForm.getInputProps('username')}
|
||||
/>
|
||||
<PasswordInput
|
||||
@ -116,7 +116,7 @@ export function AuthenticationForm() {
|
||||
required
|
||||
label={t`Email`}
|
||||
description={t`We will send you a link to login - if you are registered`}
|
||||
placeholder="reader@example.org"
|
||||
placeholder="email@example.org"
|
||||
{...simpleForm.getInputProps('email')}
|
||||
/>
|
||||
</Stack>
|
||||
|
@ -30,7 +30,7 @@ export default function Reset() {
|
||||
required
|
||||
label={t`Email`}
|
||||
description={t`We will send you a link to login - if you are registered`}
|
||||
placeholder="reader@example.org"
|
||||
placeholder="email@example.org"
|
||||
{...simpleForm.getInputProps('email')}
|
||||
/>
|
||||
</Stack>
|
||||
|
Loading…
Reference in New Issue
Block a user