aboutsummaryrefslogtreecommitdiff
path: root/cmd/web/js/password_reset.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'cmd/web/js/password_reset.jsx')
-rw-r--r--cmd/web/js/password_reset.jsx5
1 files changed, 3 insertions, 2 deletions
diff --git a/cmd/web/js/password_reset.jsx b/cmd/web/js/password_reset.jsx
index b6a10ec..7193a93 100644
--- a/cmd/web/js/password_reset.jsx
+++ b/cmd/web/js/password_reset.jsx
@@ -42,9 +42,10 @@ class PasswordResetForm extends React.Component {
42 var cName = classNames('form-message', {'hidden': this.state.hideMsg, 'message-ok': this.state.msgOk}); 42 var cName = classNames('form-message', {'hidden': this.state.hideMsg, 'message-ok': this.state.msgOk});
43 return ( 43 return (
44 <div className="row sign-in"> 44 <div className="row sign-in">
45 <div className="offset-1 col-10 offset-md-4 col-md-4 text-center"> 45 <div className="offset-1 col-10 box offset-md-4 col-md-4 text-center">
46 <form role="form" onSubmit={this.handleSubmit}> 46 <form role="form" onSubmit={this.handleSubmit}>
47 <input className="form-control" type="email" placeholder="email" onChange={this.handleEmailChange} /> 47 <label className="w-100 text-left"><strong>Email address</strong></label>
48 <input className="form-control" type="email" onChange={this.handleEmailChange} />
48 <input className="form-control submit" type="submit" value="Reset" /> 49 <input className="form-control submit" type="submit" value="Reset" />
49 <div className={cName}>{this.state.msg}</div> 50 <div className={cName}>{this.state.msg}</div>
50 </form> 51 </form>