+ */
\ No newline at end of file
diff --git a/b2-cwd/integration/live/session3/formulaire-contact/print.css b/b2-cwd/integration/live/session3/formulaire-contact/print.css
new file mode 100644
index 0000000..39a403f
--- /dev/null
+++ b/b2-cwd/integration/live/session3/formulaire-contact/print.css
@@ -0,0 +1,4 @@
+#main-menu
+{
+ display: none!important;
+}
\ No newline at end of file
diff --git a/b2-cwd/integration/live/session3/formulaire-contact/skeleton-full.html b/b2-cwd/integration/live/session3/formulaire-contact/skeleton-full.html
new file mode 100644
index 0000000..f064dcf
--- /dev/null
+++ b/b2-cwd/integration/live/session3/formulaire-contact/skeleton-full.html
@@ -0,0 +1,71 @@
+
+
+
+
+ A hompage
+
+
+
+
+
+
+
+
+
+
+
A hompage
+
+
+ Lorem Ipsum is simply dummy text of the printing and typesetting industry.
+
+
Lorem Ipsum has been the industry's standard dummy text
+
ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum
+
+
ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum
+
+
+
+
+
+
Contact us
+
+
+
+
\ No newline at end of file
diff --git a/b2-cwd/integration/live/session3/formulaire-contact/style-main.scss b/b2-cwd/integration/live/session3/formulaire-contact/style-main.scss
new file mode 100644
index 0000000..d423874
--- /dev/null
+++ b/b2-cwd/integration/live/session3/formulaire-contact/style-main.scss
@@ -0,0 +1,212 @@
+/////// SESSIONS 1 et 2
+
+$font : Arial, Helvetica, sans-serif;
+$normalfontsize : 12px;
+$marge : 8px;
+
+body
+{
+ font-family: $font;
+ font-size:$normalfontsize;
+}
+
+h4
+{
+ font-size:$normalfontsize + 2px;
+}
+
+body,figure,img
+{
+ padding:0;
+ border:none;
+ margin:0;
+}
+
+#switch:checked ~ p
+{
+ background-color:green;
+}
+
+img
+{
+ // avec interpolation
+ width:calc(100% - (#{$marge}*2));
+ height:auto;
+ margin:$marge;
+ top:50%;
+ transform: translateY(-25%);
+}
+
+picture
+{
+ position:relative;
+ display:block;
+ max-height:40vh;
+ overflow:hidden;
+}
+
+#main-menu
+{
+ text-align:center;
+ ul
+ {
+ list-style:none;
+ }
+
+ li
+ {
+ text-align: left;
+ }
+
+ li a,
+ li span,
+ li label
+ {
+ color:black;
+ text-decoration:none;
+ font-size:1.1rem;
+ }
+
+ li span
+ {
+ color:#666;
+ }
+
+ .menu-label
+ {
+ font-size:1.5rem;
+ color:black;
+ text-decoration:none;
+ font-weight:bold;
+ display:inline-block;
+ line-height:2rem;
+ }
+}
+.burger
+{
+ float:left;
+ margin: 3px 8px;
+ b,i
+ {
+ display: block;
+ width: 20px;
+ }
+ b
+ {
+ height: 2px;
+ margin-bottom: 5px;
+ position: relative;
+ background: #000;
+ border-radius: 2px;
+ z-index: 1;
+ &:first-of-type
+ {
+ margin-top:5px;
+ }
+ }
+ i
+ {
+ color:blue;
+ }
+}
+
+//switch pour afficher le menu
+#main-menu ul
+{
+ display:none;
+}
+
+main, h1
+{
+ margin:1rem;
+ padding:1rem;
+}
+
+#main-menu #switch:checked ~ ul
+{
+ display:block;
+}
+
+////////// FORMULAIRE DE CONTACT
+
+// switch por afficher le conteneur du formulaire
+.contact-form-wrap
+{
+ display:none;
+}
+
+#show-contact:checked ~ .contact-form-wrap
+{
+ display:block;
+}
+
+// je positionne le fond en fixed pour lui faire occuper toute la page
+.contact-form-wrap
+{
+ position:fixed;
+ //fond noir à 25% ce qui donne la transparence
+ background-color:rgba(0,0,0,0.25);
+ top:0;
+ bottom:0;
+ left:0;
+ right:0;
+ .h3
+ {
+ color:white;
+ text-align: center;
+ margin-top:120px;
+ }
+}
+
+//je préfixe les éléments du formulaire pour les regrouper dans mon sas
+.cf
+{
+ //je centre le formulaire dans son conteneur (.contact-form-wrap)
+ &-form
+ {
+ background-color: white;
+ position: absolute;
+ top:50%;
+ left:50%;
+ transform: translate(-50%,-50%);
+ padding: 20px;
+ border-radius: 20px;
+ }
+ //je normalise tous les inputs / labels
+ &-input, &-label
+ {
+ min-height: 20px;
+ line-height: 20px;
+ box-sizing: border-box;
+ width:100%;
+ min-width:30vh;
+ }
+ &-input
+ {
+ border: solid 1px #666;
+ border-radius: 4px;
+ padding:4px;
+ }
+ &-label
+ {
+ line-height: 30px;
+ box-sizing: border-box;
+ }
+ &-btn
+ {
+ min-width: auto;
+ width:auto;
+ float: right;
+ background-color: black;
+ color:white;
+ padding-left:10px;
+ padding-right:10px;
+ margin-top:4px;
+ &:hover
+ {
+ background-color: white;
+ color:black;
+ transition: color 0.5s;
+ }
+ }
+}
diff --git a/b2-cwd/integration/live/session3/index-form.html b/b2-cwd/integration/live/session3/index-form.html
new file mode 100644
index 0000000..55c3e77
--- /dev/null
+++ b/b2-cwd/integration/live/session3/index-form.html
@@ -0,0 +1,20 @@
+
+
+
+
+ Exemple formulaire
+
+
+
+
+
+
+
+
\ No newline at end of file