Normalize email place holder value
Use a more neutral exemple domain already in use
This commit is contained in:
parent
6158455850
commit
11c5e9a307
4 changed files with 3 additions and 4 deletions
|
@ -550,7 +550,6 @@
|
|||
"Go Back": "Go Back",
|
||||
"Sign In To LBRY": "Sign In To LBRY",
|
||||
"Create a new account or sign in.": "Create a new account or sign in.",
|
||||
"hotstuff_96@hotmail.com": "hotstuff_96@hotmail.com",
|
||||
"Terms of Service": "Terms of Service",
|
||||
"Learn More": "Learn More",
|
||||
"Confirm Your Email": "Confirm Your Email",
|
||||
|
|
|
@ -97,7 +97,7 @@ function UserEmailNew(props: Props) {
|
|||
<Form onSubmit={handleSubmit} className="section">
|
||||
<FormField
|
||||
autoFocus
|
||||
placeholder={__('hotstuff_96@hotmail.com')}
|
||||
placeholder={__('yourstruly@example.com')}
|
||||
type="email"
|
||||
name="sign_up_email"
|
||||
label={__('Email')}
|
||||
|
|
|
@ -77,7 +77,7 @@ function UserEmailReturning(props: Props) {
|
|||
<Form onSubmit={handleSubmit} className="section">
|
||||
<FormField
|
||||
autoFocus={!emailExistsFromUrl}
|
||||
placeholder={__('hotstuff_96@hotmail.com')}
|
||||
placeholder={__('yourstruly@example.com')}
|
||||
type="email"
|
||||
id="username"
|
||||
autoComplete="on"
|
||||
|
|
|
@ -68,7 +68,7 @@ function UserPasswordReset(props: Props) {
|
|||
<FormField
|
||||
autoFocus
|
||||
disabled={passwordResetSuccess}
|
||||
placeholder={__('hotstuff_96@hotmail.com')}
|
||||
placeholder={__('yourstruly@example.com')}
|
||||
type="email"
|
||||
name="sign_in_email"
|
||||
id="username"
|
||||
|
|
Loading…
Reference in a new issue