Merge pull request #956 from matkoniecz/feature/less-cryptic
Tweak login menu messages
This commit is contained in:
commit
406f6d50a0
@ -39,7 +39,7 @@ export const Login: React.FC = () => {
|
|||||||
<input name="username" id="username"
|
<input name="username" id="username"
|
||||||
className="form-control" type="text"
|
className="form-control" type="text"
|
||||||
value={username} onChange={e => setUsername(e.target.value)}
|
value={username} onChange={e => setUsername(e.target.value)}
|
||||||
placeholder="not-your-real-name" required
|
placeholder="please note the user name you choose will be public" required
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<label htmlFor="password">Password</label>
|
<label htmlFor="password">Password</label>
|
||||||
|
@ -58,7 +58,7 @@ export const SignUp: React.FC = () => {
|
|||||||
value={email} onChange={e => setEmail(e.target.value)}
|
value={email} onChange={e => setEmail(e.target.value)}
|
||||||
placeholder="someone@example.com"
|
placeholder="someone@example.com"
|
||||||
/>
|
/>
|
||||||
<InfoBox msg="Please note that if you forget your password, you will only be able to recover your account if you provide an email address." />
|
<InfoBox msg="Our policy is to avoid collecting personal data wherever possible. An email address is only necessary if you wish to be able to recover your account should you forget your password." />
|
||||||
|
|
||||||
<label htmlFor="confirm_email">Confirm email (optional)</label>
|
<label htmlFor="confirm_email">Confirm email (optional)</label>
|
||||||
<input name="confirm_email" id="confirm_email"
|
<input name="confirm_email" id="confirm_email"
|
||||||
|
Loading…
Reference in New Issue
Block a user