diff --git a/src/includes/entrepreneur/profile/create.pug b/src/includes/entrepreneur/profile/create.pug
index 8eb14484cb31bbd26206253af3e000870482f81b..ce0cb42cab5e95efc21fe711136035d21d78934a 100644
--- a/src/includes/entrepreneur/profile/create.pug
+++ b/src/includes/entrepreneur/profile/create.pug
@@ -10,7 +10,7 @@ figure.logo.img_log
 
 h2.title_create Complete your entrepreneur account
 
-sib-form.block_log.block_creat_count(
+sib-form#entrepreneur_profile_creation.block_log.block_creat_count(
     bind-user
     fields="last_name, first_name, entrepreneur_profile.organisation, username"
     
diff --git a/src/includes/entrepreneur/profile/detail.pug b/src/includes/entrepreneur/profile/detail.pug
index a597bd0cb78a454819cb3e489fde11c7854867d0..72c632916c272129f5b5f4c8b22eaa794a3c6f60 100644
--- a/src/includes/entrepreneur/profile/detail.pug
+++ b/src/includes/entrepreneur/profile/detail.pug
@@ -23,7 +23,7 @@ div.block_list.flex
         sib-link(next='entrepreneur-account-edit')
             button.button_edit Edit
 
-        sib-display(
+        sib-display#entrepreneur_info(
             bind-user
             fields='name, entrepreneur_profile.organisation.name, registered_on'
             widget-name='cs-display-property'
@@ -31,7 +31,7 @@ div.block_list.flex
             widget-entrepreneur_profile.registered_on='cs-display-property'
         )
 
-        sib-display(
+        sib-display#entrepreneur_contact(
             bind-user
             fields='email'
             label-email='Email:'
diff --git a/src/includes/mentor/profile/create.pug b/src/includes/mentor/profile/create.pug
index 96049e4fcfaca9a2e2f3df66908c8c3b54860b43..17f7c8f75f9c65492c761857cf429925ed7b42b0 100644
--- a/src/includes/mentor/profile/create.pug
+++ b/src/includes/mentor/profile/create.pug
@@ -10,7 +10,7 @@ figure.logo.img_log
 
 h2.title_create Complete your mentor account
 
-sib-form.block_log.block_creat_count(
+sib-form#mentor_profile_creation.block_log.block_creat_count(
     bind-user
     fields="account_information(last_name, first_name, mentor_profile.organisation,\
             mentor_profile.phone, mentor_profile.languages, mentor_profile.fields),\
diff --git a/src/includes/mentor/profile/detail.pug b/src/includes/mentor/profile/detail.pug
index 00a95bf89c4aebfbc3d6f31e86fdc545a09fa84b..92892b7dc3bb4a22b15edb5b6a10977aa0d9406a 100644
--- a/src/includes/mentor/profile/detail.pug
+++ b/src/includes/mentor/profile/detail.pug
@@ -27,7 +27,7 @@ div.block_list.flex
         sib-link(next='mentor-account-edit')
             button.button_edit Edit
 
-        sib-display(
+        sib-display#mentor_info(
             bind-user
             fields='account.picture, name, mentor_profile.headline, mentor_profile.city, mentor_profile.country, registered_on'
             widget-account.picture='cs-profile-picture'
@@ -45,7 +45,7 @@ div.block_list.flex
             bind-user
         )
 
-        sib-display(
+        sib-display#mentor_complementary(
             bind-user
             fields='biography_label, mentor_profile.biography, skills_label, mentor_profile.skills'
             widget-biography_label='cs-display-label'
@@ -56,7 +56,7 @@ div.block_list.flex
             widget-mentor_profile.biography='cs-display-property'
         )
 
-        sib-display(
+        sib-display#mentor_contact(
             bind-user
             fields='email, mentor_profile.phone, mentor_profile.linkedin, mentor_profile.twitter'
             label-email='Email:'
diff --git a/src/scripts/coopstarter.js b/src/scripts/coopstarter.js
index b343d81fd58092bbf29a5df53f287d448e175b97..295fe98d659b7ca65f2f22788d4009867318932c 100644
--- a/src/scripts/coopstarter.js
+++ b/src/scripts/coopstarter.js
@@ -49,6 +49,11 @@ jQuery(document).ready(function($) {
   refreshList("validation-form", "pending-resources");
   refreshList("refusal-dialog-form", "pending-resources");
   refreshList("improvement-dialog-form", "pending-resources");
+  refreshList("entrepreneur_profile_creation", "entrepreneur_info");
+  refreshList("entrepreneur_profile_creation", "entrepreneur_contact");
+  refreshList("mentor_profile_creation", "mentor_info");
+  refreshList("mentor_profile_creation", "mentor_complementary");
+  refreshList("mentor_profile_creation", "mentor_contact");
 
   const logoutButtons = document.getElementsByClassName("logout-button");
   for (var i = 0; i < logoutButtons.length; i++) {