aboutsummaryrefslogtreecommitdiff
path: root/cmd/web/js/main.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'cmd/web/js/main.jsx')
-rw-r--r--cmd/web/js/main.jsx12
1 files changed, 12 insertions, 0 deletions
diff --git a/cmd/web/js/main.jsx b/cmd/web/js/main.jsx
index 827b83d..79bf976 100644
--- a/cmd/web/js/main.jsx
+++ b/cmd/web/js/main.jsx
@@ -54,6 +54,18 @@ App.page('/me', true, function(context) {
54 </div>); 54 </div>);
55}); 55});
56 56
57App.page('/not_confirmed', true, function(context) {
58 App.mount(<div>
59 <Logo />
60 <div className="row">
61 <div className="box offset-3 col-6 text-center">
62 <p>Please be patient, you account is being confirmed...</p>
63 <p><a href="/me"><u>Refresh</u></a></p>
64 </div>
65 </div>
66 </div>);
67});
68
57App.page('/otp/setup', true, function(context) { 69App.page('/otp/setup', true, function(context) {
58 Api.Call('OTP_ENROLL', {}, function(err, status, data) { 70 Api.Call('OTP_ENROLL', {}, function(err, status, data) {
59 if (err) { 71 if (err) {