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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

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

View File

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