diff --git a/CodeIgniter-3.1.13/application/views/layout/footer_dark.php b/CodeIgniter-3.1.13/application/views/layout/footer_dark.php
new file mode 100644
index 0000000..c37558e
--- /dev/null
+++ b/CodeIgniter-3.1.13/application/views/layout/footer_dark.php
@@ -0,0 +1,28 @@
+
+
+
+
+
+
+ Musique
+
+
+
+
+
diff --git a/CodeIgniter-3.1.13/application/views/layout/header_not_logged_dark.php b/CodeIgniter-3.1.13/application/views/layout/header_not_logged_dark.php
new file mode 100644
index 0000000..89c6310
--- /dev/null
+++ b/CodeIgniter-3.1.13/application/views/layout/header_not_logged_dark.php
@@ -0,0 +1,36 @@
+
+
+
+
+
+
+
+ Onzeur
+
+
+
+
+
+
+
diff --git a/CodeIgniter-3.1.13/assets/css/footer_dark.css b/CodeIgniter-3.1.13/assets/css/footer_dark.css
new file mode 100644
index 0000000..d1b8f61
--- /dev/null
+++ b/CodeIgniter-3.1.13/assets/css/footer_dark.css
@@ -0,0 +1,44 @@
+.footer {
+ background-color: black;
+ color: white;
+ padding: 20px;
+ text-align: center;
+}
+
+.footer-content {
+ max-width: 1200px;
+ margin: 0 auto;
+ display: flex;
+ flex-direction: column; /* Afficher les éléments en colonne */
+ align-items: center; /* Centrer horizontalement */
+}
+
+.social-links {
+ display: flex;
+ gap: 20px;
+ margin-bottom: 10px; /* Ajouter un espace entre les logos et le texte */
+}
+
+.social-icon img {
+ height: 30px;
+}
+
+.legal {
+ font-size: 14px;
+ display: flex;
+ align-items: center; /* Centrer verticalement */
+}
+
+.legal span {
+ margin: 0 10px;
+}
+
+.legal-link {
+ color: white;
+ text-decoration: none;
+ transition: color 0.3s ease;
+}
+
+.legal-link:hover {
+ color: rgb(181, 15, 232);
+}
diff --git a/CodeIgniter-3.1.13/assets/css/header_not_logged_dark.css b/CodeIgniter-3.1.13/assets/css/header_not_logged_dark.css
new file mode 100644
index 0000000..dc7572d
--- /dev/null
+++ b/CodeIgniter-3.1.13/assets/css/header_not_logged_dark.css
@@ -0,0 +1,83 @@
+body {
+ margin: 0;
+ font-family: Arial, sans-serif;
+}
+.header {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ padding: 10px 20px;
+ background-color: black;
+}
+.header-content {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ width: 100%;
+ max-width: 1200px;
+ margin: 0 auto;
+}
+.logo img {
+ height: 50px;
+}
+.nav-buttons {
+ display: flex;
+ gap: 10px;
+}
+.nav-buttons a {
+ padding: 10px 20px;
+ text-decoration: none;
+ color: white;
+ border-radius: 5px;
+ text-align: center;
+ transition: box-shadow 0.3s ease, background-color 0.3s ease;
+}
+.btn-connexion {
+ background-color: transparent;
+ border: 2px solid white;
+}
+.btn-inscription {
+ background-color: rgb(181, 15, 232);
+}
+.nav-buttons a:hover {
+ box-shadow: 0 0 10px rgba(255, 255, 255, 0.7);
+}
+
+/* menu burger */
+.menu-toggle {
+ display: none;
+ flex-direction: column;
+ cursor: pointer;
+}
+.menu-toggle span {
+ width: 25px;
+ height: 3px;
+ background-color: white;
+ margin: 4px 0;
+}
+.nav-buttons.active {
+ display: flex;
+ flex-direction: column;
+ align-items: flex-start;
+ background-color: black;
+ position: absolute;
+ top: 70px;
+ right: 20px;
+ padding: 10px;
+ border-radius: 5px;
+ box-shadow: 0 0 10px rgba(255, 255, 255, 0.7);
+}
+.nav-buttons.active a {
+ display: block;
+ margin-bottom: 10px;
+}
+
+@media screen and (max-width: 768px) {
+ .nav-buttons {
+ display: none;
+ }
+ /* Affichage du menu burger sur les appareils mobiles */
+ .menu-toggle {
+ display: flex;
+ }
+}
diff --git a/CodeIgniter-3.1.13/assets/img/Logo_ONZEUR.png b/CodeIgniter-3.1.13/assets/img/Logo_ONZEUR.png
new file mode 100644
index 0000000..e5f16bc
Binary files /dev/null and b/CodeIgniter-3.1.13/assets/img/Logo_ONZEUR.png differ
diff --git a/CodeIgniter-3.1.13/assets/img/Logo ONZEUR.png b/CodeIgniter-3.1.13/assets/img/Logo_ONZEUR_DARK.png
similarity index 100%
rename from CodeIgniter-3.1.13/assets/img/Logo ONZEUR.png
rename to CodeIgniter-3.1.13/assets/img/Logo_ONZEUR_DARK.png
diff --git a/CodeIgniter-3.1.13/assets/img/Logo_ONZEUR_LIGHT.png b/CodeIgniter-3.1.13/assets/img/Logo_ONZEUR_LIGHT.png
new file mode 100644
index 0000000..9a925fb
Binary files /dev/null and b/CodeIgniter-3.1.13/assets/img/Logo_ONZEUR_LIGHT.png differ
diff --git a/CodeIgniter-3.1.13/assets/img/reseaux_sociaux/facebook.png b/CodeIgniter-3.1.13/assets/img/reseaux_sociaux/facebook.png
new file mode 100644
index 0000000..cdf6be2
Binary files /dev/null and b/CodeIgniter-3.1.13/assets/img/reseaux_sociaux/facebook.png differ
diff --git a/CodeIgniter-3.1.13/assets/img/reseaux_sociaux/instagram.png b/CodeIgniter-3.1.13/assets/img/reseaux_sociaux/instagram.png
new file mode 100644
index 0000000..1ee4de3
Binary files /dev/null and b/CodeIgniter-3.1.13/assets/img/reseaux_sociaux/instagram.png differ
diff --git a/CodeIgniter-3.1.13/assets/img/reseaux_sociaux/snapchat.png b/CodeIgniter-3.1.13/assets/img/reseaux_sociaux/snapchat.png
new file mode 100644
index 0000000..8696b0a
Binary files /dev/null and b/CodeIgniter-3.1.13/assets/img/reseaux_sociaux/snapchat.png differ
diff --git a/CodeIgniter-3.1.13/assets/img/reseaux_sociaux/youtube.png b/CodeIgniter-3.1.13/assets/img/reseaux_sociaux/youtube.png
new file mode 100644
index 0000000..5014f24
Binary files /dev/null and b/CodeIgniter-3.1.13/assets/img/reseaux_sociaux/youtube.png differ