Added password warning to the signup form

This commit is contained in:
Gregory Schier 2016-10-28 14:32:40 -07:00
parent 25d5e9b1cf
commit 12b2fb1a30

View File

@ -94,6 +94,10 @@ class SignupModal extends Component {
placeholder="•••••••••••••"
ref={n => this._passwordInput = n}/>
</div>
<p className="italic faint pad-top-sm">
NOTE: your password is used for end-to-end encryption so try not
to lose it
</p>
{this.state.error ? (
<div className="danger pad-top">** {this.state.error}</div>
) : null}