Amend login/signup format, add email notice
This commit is contained in:
parent
8eb0923098
commit
2eddd8ac3d
@ -113,13 +113,13 @@ class Login extends Component<any, any> { // TODO: add proper types
|
|||||||
|
|
||||||
<Link to="/forgotten-password.html">Forgotten password?</Link>
|
<Link to="/forgotten-password.html">Forgotten password?</Link>
|
||||||
|
|
||||||
<div className="buttons-container">
|
<div className="buttons-container with-space">
|
||||||
<input type="submit" value="Log In" className="btn btn-primary" />
|
<input type="submit" value="Log In" className="btn btn-primary" />
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
Would you like to create an account instead?
|
Would you like to create an account instead?
|
||||||
|
|
||||||
<div className="buttons-container">
|
<div className="buttons-container with-space">
|
||||||
<Link to="sign-up.html" className="btn btn-outline-dark">Sign Up</Link>
|
<Link to="sign-up.html" className="btn btn-outline-dark">Sign Up</Link>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
@ -106,7 +106,7 @@ class SignUp extends Component<any, any> { // TODO: add proper types
|
|||||||
value={this.state.email} onChange={this.handleChange}
|
value={this.state.email} onChange={this.handleChange}
|
||||||
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." />
|
||||||
<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"
|
||||||
className="form-control" type="email"
|
className="form-control" type="email"
|
||||||
@ -147,13 +147,13 @@ class SignUp extends Component<any, any> { // TODO: add proper types
|
|||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div className="buttons-container">
|
<div className="buttons-container with-space">
|
||||||
<input type="submit" value="Sign Up" className="btn btn-primary" />
|
<input type="submit" value="Sign Up" className="btn btn-primary" />
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
Do you already have an account?
|
Do you already have an account?
|
||||||
|
|
||||||
<div className="buttons-container">
|
<div className="buttons-container with-space">
|
||||||
<Link to="login.html" className="btn btn-outline-dark">Log in</Link>
|
<Link to="login.html" className="btn btn-outline-dark">Log in</Link>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user