mirror of
https://github.com/inventree/InvenTree.git
synced 2025-06-13 18:45:40 +00:00
Fix placeholder text values (#6223)
This commit is contained in:
@ -89,7 +89,7 @@ export function AuthenticationForm() {
|
|||||||
<TextInput
|
<TextInput
|
||||||
required
|
required
|
||||||
label={t`Username`}
|
label={t`Username`}
|
||||||
placeholder="reader"
|
placeholder={t`Your username`}
|
||||||
{...classicForm.getInputProps('username')}
|
{...classicForm.getInputProps('username')}
|
||||||
/>
|
/>
|
||||||
<PasswordInput
|
<PasswordInput
|
||||||
@ -116,7 +116,7 @@ export function AuthenticationForm() {
|
|||||||
required
|
required
|
||||||
label={t`Email`}
|
label={t`Email`}
|
||||||
description={t`We will send you a link to login - if you are registered`}
|
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')}
|
{...simpleForm.getInputProps('email')}
|
||||||
/>
|
/>
|
||||||
</Stack>
|
</Stack>
|
||||||
|
@ -30,7 +30,7 @@ export default function Reset() {
|
|||||||
required
|
required
|
||||||
label={t`Email`}
|
label={t`Email`}
|
||||||
description={t`We will send you a link to login - if you are registered`}
|
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')}
|
{...simpleForm.getInputProps('email')}
|
||||||
/>
|
/>
|
||||||
</Stack>
|
</Stack>
|
||||||
|
Reference in New Issue
Block a user