From 6dc268bdef757887929f493adc4d7e00b4d441db Mon Sep 17 00:00:00 2001 From: Benoit Alessandroni <benoit@happy-dev.fr> Date: Wed, 24 Jul 2019 17:25:36 +0200 Subject: [PATCH] Proper entrepreneur redirect --- src/includes/entrepreneur/create.pug | 5 +++++ src/includes/splash.pug | 2 +- src/index.pug | 6 ++---- 3 files changed, 8 insertions(+), 5 deletions(-) diff --git a/src/includes/entrepreneur/create.pug b/src/includes/entrepreneur/create.pug index 8f40f7ea..2afd8bf9 100644 --- a/src/includes/entrepreneur/create.pug +++ b/src/includes/entrepreneur/create.pug @@ -1,3 +1,5 @@ +include ../components/widgets + h2 Create an entrepreneur account sib-form( @@ -20,6 +22,9 @@ sib-form( multiple-organisation='sib-multiple-select' widget-organisation='sib-form-auto-completion' + widget-user.password='cs-form-password' + widget-user.password_confirmation='cs-form-password' + submit-button="CREATE AN ACCOUNT" ) diff --git a/src/includes/splash.pug b/src/includes/splash.pug index 8c90634d..caa93d28 100644 --- a/src/includes/splash.pug +++ b/src/includes/splash.pug @@ -2,7 +2,7 @@ sib-router sib-route(name='mentor-login') sib-route(name='entrepreneur-login') -h2 Welcome to your international index of resources for cooperative mentors and entrepreneurs +h2 Welcome to our international index of resources for cooperative mentors and entrepreneurs sib-link(next='mentor-login') div I am a mentor diff --git a/src/index.pug b/src/index.pug index 0258bf29..6d77ee8c 100644 --- a/src/index.pug +++ b/src/index.pug @@ -7,13 +7,13 @@ html sib-route(name='mentor-new-account') sib-route(name='entrepreneur-new-account') sib-route(name='mentor-dashboard') - sib-route(name='entrepreneur-search-page') + sib-route(name='entrepreneur-dashboard') body #mentor-dashboard(hidden).no-sidebar include includes/mentor/dashboard.pug - #entrepreneur-search-page(hidden).no-sidebar + #entrepreneur-dashboard(hidden).no-sidebar include includes/entrepreneur/dashboard.pug #splash(hidden).no-sidebar @@ -53,11 +53,9 @@ script(type='module'). let idToken = await sibAuth.getUserIdToken(); if ( !user ) { - console.log("You're not logged in"); return; } user = await store.get(user); - console.log('Retrieved user', user); if (user && user.mentor_profile) { window.dispatchEvent( -- GitLab