aboutsummaryrefslogtreecommitdiff
path: root/cmd/web/js/otp.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'cmd/web/js/otp.jsx')
-rw-r--r--cmd/web/js/otp.jsx5
1 files changed, 3 insertions, 2 deletions
diff --git a/cmd/web/js/otp.jsx b/cmd/web/js/otp.jsx
index 6c22c8c..5f04e21 100644
--- a/cmd/web/js/otp.jsx
+++ b/cmd/web/js/otp.jsx
@@ -61,11 +61,12 @@ class OtpEnrollForm extends React.Component {
61} 61}
62 return ( 62 return (
63 <div className="row otp-enroll"> 63 <div className="row otp-enroll">
64 <div className="offset-4 col-4 col-xs-offset-1 col-xs-10 text-center"> 64 <div className="offset-1 col-10 box offset-md-4 col-md-4 text-center">
65 {qrCode} 65 {qrCode}
66 <div className="row justify-content-center"> 66 <div className="row justify-content-center">
67 <form role="form" onSubmit={this.handleSubmit}> 67 <form role="form" onSubmit={this.handleSubmit}>
68 <input className="form-control" type="pass" placeholder="code" onChange={this.handlePassChange} /> 68 <label className="w-100 text-left"><strong>Code</strong></label>
69 <input className="form-control" type="pass" onChange={this.handlePassChange} />
69 <input className="form-control submit" type="submit" value="Validate" /> 70 <input className="form-control submit" type="submit" value="Validate" />
70 <div className={cName}>{this.state.msg}</div> 71 <div className={cName}>{this.state.msg}</div>
71 </form> 72 </form>