X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=cmd%2Fweb%2Fjs%2Fmain.jsx;h=7fa2d2601c2331b896c47e520431ba6634a69104;hb=d1c0ccfcb84f1b8778e38b027a333d03e1f4ae9e;hp=c95c74888b978f60eea72c99dafbbea87c08b79a;hpb=ee902062a71c1ef31176cf5061555618b288b1d4;p=perso%2FImmae%2FProjets%2FCryptomonnaies%2FCryptoportfolio%2FFront.git diff --git a/cmd/web/js/main.jsx b/cmd/web/js/main.jsx index c95c748..7fa2d26 100644 --- a/cmd/web/js/main.jsx +++ b/cmd/web/js/main.jsx @@ -1,40 +1,15 @@ import SignupForm from './signup.js'; import SigninForm from './signin.js'; +import PasswordResetForm from './password_reset.js'; +import ChangePasswordForm from './change_password.js'; import OtpEnrollForm from './otp.js'; import PoloniexController from './poloniex.js'; +import UserAccount from './account.js'; import App from './app.js'; import Api from './api.js'; import cookies from './cookies.js'; import React from 'react'; - -class Header extends React.Component { - render = () => { - if (this.props.displayLogout === true) { - return ; - } - return ; - - } -} - -class Logo extends React.Component { - render() { - return ; - } -} +import qs from 'qs'; App.page('/signup', false, function(context) { if (App.isUserSignedIn()) { @@ -43,7 +18,6 @@ App.page('/signup', false, function(context) { } App.mount(
-
); }); @@ -55,11 +29,60 @@ App.page('/signin', false, function(context) { } App.mount(
-
); }); +App.page('/reset-password', false, function(context) { + if (App.isUserSignedIn()) { + App.go('/me'); + return; + } + + App.mount(
+ +
); +}); + +App.page('/change-password', false, function(context) { + if (App.isUserSignedIn()) { + App.go('/me'); + return; + } + + var token = qs.parse(context.querystring).token; + + if (token === undefined) { + App.go('/'); + return; + } + + App.mount(
+ +
); +}); + +App.page('/confirm', false, function(context) { + var token = qs.parse(context.querystring).token; + + if (token === undefined) { + App.go('/'); + return; + } + + Api.Call( + 'CONFIRM_EMAIL', + {'token': token}, + function(err, status, data) { + if (err) { + console.error(err, data); + } + + App.go('/me'); + } + ); +}); + App.page('/signout', true, function(context) { cookies.removeItem('jwt'); @@ -68,18 +91,22 @@ App.page('/signout', true, function(context) { App.page('/me', true, function(context) { App.mount(
-
); }); +App.page('/account', true, function(context) { + App.mount(
+ +
); +}); + App.page('/not_confirmed', true, function(context) { App.mount(
-
-

Please be patient, you account is being confirmed...

-

Refresh

+

An email has now been sent to your email address.

+

{'Please click the \'Confirm your account\' button to validate your email.'}

); @@ -93,7 +120,6 @@ App.page('/otp/setup', true, function(context) { } App.mount(
-
); @@ -102,7 +128,6 @@ App.page('/otp/setup', true, function(context) { App.page('/otp/validate', true, function(context) { App.mount(
-
); });