Merge pull request #956 from matkoniecz/feature/less-cryptic

Tweak login menu messages
This commit is contained in:
Mike Simpson 2022-10-24 10:52:17 +01:00 committed by GitHub
commit 406f6d50a0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -39,7 +39,7 @@ export const Login: React.FC = () => {
<input name="username" id="username"
className="form-control" type="text"
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>

View File

@ -58,7 +58,7 @@ export const SignUp: React.FC = () => {
value={email} onChange={e => setEmail(e.target.value)}
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>
<input name="confirm_email" id="confirm_email"