2
0
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:
Oliver
2024-01-13 01:29:12 +11:00
committed by GitHub
parent a04b22b090
commit 213a63318d
2 changed files with 3 additions and 3 deletions

View File

@ -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>

View File

@ -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>