diff --git a/src/includes/mentor/profile/create.pug b/src/includes/mentor/profile/create.pug
new file mode 100644
index 0000000000000000000000000000000000000000..96049e4fcfaca9a2e2f3df66908c8c3b54860b43
--- /dev/null
+++ b/src/includes/mentor/profile/create.pug
@@ -0,0 +1,70 @@
+include ../../components/widgets
+
+figure.logo
+    img(src="../images/logo.png" 
+        alt="Coopstarter")
+
+figure.logo.img_log
+    img(src="../images/mentor.png" 
+        alt="Create a mentor account")
+
+h2.title_create Complete your mentor account
+
+sib-form.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),\
+            about_you(header_about_you, account.picture, mentor_profile.headline, mentor_profile.city, mentor_profile.country,\
+            mentor_profile.biography, mentor_profile.skills),\
+            social_media(header_social_media, mentor_profile.linkedin, mentor_profile.twitter), username"
+    
+    range-mentor_profile.fields=`${endpoints.fields}`
+    range-mentor_profile.organisation=`${endpoints.organisations}`
+    range-mentor_profile.languages=`${endpoints.languages}`
+
+    label-header_about_you="About you"
+    label-header_social_media="Social medias"
+    
+    widget-header_social_media="cs-section_header"
+    widget-header_about_you="cs-section_introduction"
+    
+    label-first_name="Surname"
+    label-last_name="Name"
+    label-mentor_profile.organisation="Organisation"
+    label-mentor_profile.phone="Phone number"
+    label-mentor_profile.languages="Languages"
+    label-mentor_profile.fields="Fields"
+    label-account.picture="Photo"
+    label-mentor_profile.headline="Headline or current position"
+    class-mentor_profile.headline="w_75"
+    label-mentor_profile.city="City"
+    label-mentor_profile.country="Country"
+    label-mentor_profile.biography="Tell us more about your activities"
+    label-mentor_profile.skills="What skills can you share with our entrepreneurs ?"
+    label-mentor_profile.linkedin="Linkedin"
+    label-mentor_profile.twitter="Twitter"
+
+    widget-mentor_profile.skills="sib-form-textarea"
+    widget-mentor_profile.biography="sib-form-textarea"
+    widget-username="sib-form-hidden"
+
+    class-mentor_profile.organisation='form-label is-dark'
+    multiple-mentor_profile.organisation='sib-multiple-select'
+    widget-mentor_profile.organisation='sib-form-auto-completion'
+
+    class-mentor_profile.languages='form-label is-dark'
+    multiple-mentor_profile.languages='sib-multiple-select'
+    widget-mentor_profile.languages='sib-form-auto-completion'
+
+    class-mentor_profile.fields='form-label is-dark'
+    multiple-mentor_profile.fields='sib-multiple-select'
+    widget-mentor_profile.fields='sib-form-auto-completion'
+
+    upload-url-account.picture=`${sdn}/upload/`
+    widget-account.picture='sib-form-file'
+    class-account.picture='input_photo w_25'
+    class-headline='w_75'
+
+    submit-button="COMPLETE YOUR ACCOUNT"
+    next='mentor-dashboard'
+)
diff --git a/src/includes/mentor/profile/detail.pug b/src/includes/mentor/profile/detail.pug
new file mode 100644
index 0000000000000000000000000000000000000000..0b4b95f47502c2274ab945f36c882249a5939e1a
--- /dev/null
+++ b/src/includes/mentor/profile/detail.pug
@@ -0,0 +1,72 @@
+mentor-account-editinclude ../components/widgets
+
+div.container_min
+    h2.title_lead.fd_bleu My Account
+
+div.block_list.flex
+    div.button__actions.w_25
+        div.resources__newresource
+            sib-link(next='mentor-resource-create')
+                div
+                div.button_base.ico_gauche.ico_plus Post a new Resource
+
+        div.dashboard__database
+            sib-link(next='mentor-database')
+                div.button_base.ico_gauche.ico_database Browse database
+
+        div.dashboard__database
+            sib-link(next='mentor-resource-list')
+                div.button_base.ico_gauche.ico_search Back to dashboard
+
+        div.dashboard__database
+                div#logout-button.button_base(
+                    role='log out'
+                ) Logout
+    
+    div.profile_information.block_log.w_75
+        sib-link(next='mentor-account-edit')
+            div.button_base.ico_gauche.ico_search Edit
+
+        sib-display(
+            bind-user
+            fields='account.picture, name, mentor_profile.headline, mentor_profile.city, mentor_profile.country, registered_on'
+            widget-account.picture='cs-profile-picture'
+            widget-name='cs-display-property'
+            widget-mentor_profile.headline='cs-display-property'
+            widget-mentor_profile.city='cs-display-property'
+            widget-mentor_profile.country='cs-display-property'
+            widget-mentor_profile.registered_on='cs-display-property'
+        )
+
+        sib-display.bold(
+            fields=""
+            nested-field="resources"
+            counter-template="<p>${counter} resource(s) uploaded here</p>"
+            bind-user
+        )
+
+        sib-display(
+            bind-user
+            fields='biography_label, mentor_profile.biography, skills_label, mentor_profile.skills'
+            widget-biography_label='cs-display-label'
+            widget-skills_label='cs-display-label'
+            label-skills_label='Skills:'
+            label-biography_label='Activities:'
+            widget-mentor_profile.skills='cs-display-property'
+            widget-mentor_profile.biography='cs-display-property'
+        )
+
+        sib-display(
+            bind-user
+            fields='email, mentor_profile.phone, mentor_profile.linkedin, mentor_profile.twitter'
+            label-email='Email:'
+            class-email="contact_profil"
+            label-mentor_profile.phone='Phone number:'
+            class-mentor_profile.phone="contact_profil"
+            widget-email='cs-display-resource-property'
+            widget-mentor_profile.phone='cs-display-resource-property'
+            widget-mentor_profile.linkedin='cs-display-link'
+            widget-mentor_profile.twitter='cs-display-link'
+            label-mentor_profile.twitter='<i class="fab fa-twitter"></i>'
+            label-mentor_profile.linkedin='<i class="fab fa-linkedin-in"></i>'
+        )
\ No newline at end of file
diff --git a/src/includes/mentor/profile/edit.pug b/src/includes/mentor/profile/edit.pug
new file mode 100644
index 0000000000000000000000000000000000000000..09a9e2b732f67824bc943fc14f0aa01902deb125
--- /dev/null
+++ b/src/includes/mentor/profile/edit.pug
@@ -0,0 +1,62 @@
+include ../../components/widgets
+
+h2.title_create Edit you account
+
+sib-form.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),\
+            about_you(header_about_you, account.picture, mentor_profile.headline, mentor_profile.city, mentor_profile.country,\
+            mentor_profile.biography, mentor_profile.skills),\
+            social_media(header_social_media, mentor_profile.linkedin, mentor_profile.twitter), username"
+    
+    range-mentor_profile.fields=`${endpoints.fields}`
+    range-mentor_profile.organisation=`${endpoints.organisations}`
+    range-mentor_profile.languages=`${endpoints.languages}`
+
+    label-header_about_you="About you"
+    label-header_social_media="Social medias"
+    
+    widget-header_social_media="cs-section_header"
+    widget-header_about_you="cs-section_introduction"
+    
+    label-first_name="Surname"
+    label-last_name="Name"
+    label-mentor_profile.organisation="Organisation"
+    label-mentor_profile.phone="Phone number"
+    label-mentor_profile.languages="Languages"
+    label-mentor_profile.fields="Fields"
+    label-account.picture="Photo"
+    label-mentor_profile.headline="Headline or current position"
+    class-mentor_profile.headline="w_75"
+    label-mentor_profile.city="City"
+    label-mentor_profile.country="Country"
+    label-mentor_profile.biography="Tell us more about your activities"
+    label-mentor_profile.skills="What skills can you share with our entrepreneurs ?"
+    label-mentor_profile.linkedin="Linkedin"
+    label-mentor_profile.twitter="Twitter"
+
+    widget-mentor_profile.skills="sib-form-textarea"
+    widget-mentor_profile.biography="sib-form-textarea"
+    widget-username="sib-form-hidden"
+
+    class-mentor_profile.organisation='form-label is-dark'
+    multiple-mentor_profile.organisation='sib-multiple-select'
+    widget-mentor_profile.organisation='sib-form-auto-completion'
+
+    class-mentor_profile.languages='form-label is-dark'
+    multiple-mentor_profile.languages='sib-multiple-select'
+    widget-mentor_profile.languages='sib-form-auto-completion'
+
+    class-mentor_profile.fields='form-label is-dark'
+    multiple-mentor_profile.fields='sib-multiple-select'
+    widget-mentor_profile.fields='sib-form-auto-completion'
+
+    upload-url-account.picture=`${sdn}/upload/`
+    widget-account.picture='sib-form-file'
+    class-account.picture='input_photo w_25'
+    class-headline='w_75'
+
+    submit-button="Save modifications"
+    next='mentor-dashboard'
+)
\ No newline at end of file