diff --git a/src/dependencies.pug b/src/dependencies.pug
index 6ea236ad2bed8911cda77d2e8ac73bd78d34976d..1b4295fa471ad97c612edd9b39ac8244f1a8e8cc 100644
--- a/src/dependencies.pug
+++ b/src/dependencies.pug
@@ -13,7 +13,7 @@ link(rel='stylesheet', href='https://fonts.googleapis.com/css?family=Open+Sans:3
 //- script(type="module" src="/lib/sib-notifications/sib-notifications.js")
 //- script(type="module" src="/lib/sib-conversation/sib-conversation.js")
 //- script(type="module" src="/lib/sib-directory/sib-directory.js")
-//- script(type="module" src="/lib/sib-joboffers/sib-joboffers.js")
+//- script(type="module" src="/lib/sib-job-board/sib-job-board.js")
 
 //- CDN
 script(type="module" src="https://unpkg.com/@startinblox/core@0.7")
diff --git a/src/index.pug b/src/index.pug
index a6668347f483065675b56a0535fdef1df763b806..527915cf5e11508a00d4a9500357a48fe27c69b9 100644
--- a/src/index.pug
+++ b/src/index.pug
@@ -25,6 +25,10 @@ html(lang="en")
           sib-link(class="backlink", next="job-offers") Back
           include page-job-offer-create.pug
 
+        #job-offer-edit(hidden).no-sidebar
+          sib-link(class="backlink", next="job-offers") Back
+          include page-job-offer-edit.pug
+
         #project(hidden).with-sidebar
           include page-project.pug
 
diff --git a/src/menu-left.pug b/src/menu-left.pug
index 104aadacd2877181161ce8fadf678c6b824cb877..b4df35d3b17e9d167fae93e5c70e67f7bd8d5b84 100644
--- a/src/menu-left.pug
+++ b/src/menu-left.pug
@@ -11,6 +11,7 @@ nav#main__menu
       div.menu-label Job offers
       div.menu-icon.icon-briefcase
     sib-route(hidden, name='job-offer-create')
+    sib-route(hidden, name='job-offer-edit', use-id)
     div.divider
     div.menu-wrapper
       div.menu
diff --git a/src/page-job-offer-edit.pug b/src/page-job-offer-edit.pug
new file mode 100644
index 0000000000000000000000000000000000000000..755e02b06ead39089fd78a5b2e53c150c8a0bf5b
--- /dev/null
+++ b/src/page-job-offer-edit.pug
@@ -0,0 +1,28 @@
+.content-box.with-form
+  h1 Edit your job offer
+  
+  sib-form.block(
+    bind-resources
+    range-skills=`${sdn}/skills/`
+
+    data-fields='title, description, skills, closingDate'
+
+    class-title='field form-label is-light is-expanded'
+    label-title='Title*'
+    
+    class-description='field form-label is-light is-expanded'
+    label-description='Description*'
+    widget-description='sib-form-textarea'
+
+    class-skills='form-label is-dark'
+    label-skills='The required skills for this mission:*'
+    multiple-skills='sib-multiple-select'
+    widget-skills='sib-form-auto-completion'
+    
+    class-closingDate='form-label is-dark'
+    label-closingDate='Publication end date:*'
+    widget-closingDate='sib-form-date'
+
+    next='job-offers'
+  )
+
diff --git a/src/page-job-offers.pug b/src/page-job-offers.pug
index 0eaebc657486eb1fb21d34e5c8fb3f251ed8001c..6a42e97d4fb03aa7077dae62acabede41f8ee484 100644
--- a/src/page-job-offers.pug
+++ b/src/page-job-offers.pug
@@ -8,4 +8,3 @@
     sib-link(next="job-offer-create").plus-button
       div.icon-plus
       div Post a new offer
-
diff --git a/src/styles/base/form.scss b/src/styles/base/form.scss
index 0cafbd4189b63b5cd2569dba4522f05e2f0cc528..79eb075be3ccc39de403e6215240eb145f4ad4d2 100644
--- a/src/styles/base/form.scss
+++ b/src/styles/base/form.scss
@@ -49,6 +49,7 @@
         border: 2px solid $color-222-57-95;
         color: $color-233-18-29;
         /*flex: 1 1 0;  Problem on Firefox for input type date*/
+        line-height: 1;
         margin-top: 0.8rem;
         min-width: 0;
         padding: 1rem;
diff --git a/src/styles/layout/job-offers/job-offers.scss b/src/styles/layout/job-offers/job-offers.scss
index b0329c0014fda445879c6bf014e49729e7a22df1..17ea80825208bbe8729bc4f9a8538595569ebfc6 100644
--- a/src/styles/layout/job-offers/job-offers.scss
+++ b/src/styles/layout/job-offers/job-offers.scss
@@ -66,7 +66,7 @@ sib-job-board {
           display: flex;
           margin: -0.25em;
 
-          >* {
+          >*:not(sib-action) {
             margin: 0.25em;
           }
 
@@ -170,4 +170,14 @@ sib-job-board {
       }
     }
   }
-}
\ No newline at end of file
+}
+sib-action[name='edit'] {
+  margin-left: auto;
+  color: $color-215-6-63;
+
+  &>sib-link {
+    @include icon('options-vertical');
+    font-size: 2rem;
+  }
+}
+