diff --git a/src/Controller/AdminController.php b/src/Controller/AdminController.php
index d6856fb91f600c3cda3379622b8f3909eafab87c..2b39f9c53e263d13831e6c04c5707811703082f2 100644
--- a/src/Controller/AdminController.php
+++ b/src/Controller/AdminController.php
@@ -1,5 +1,6 @@
 <?php
 
+// Edited By Néo Schobert & Yanis Bentoumi
 namespace App\Controller;
 
 use App\Repository\UserRepository;
diff --git a/src/Controller/HomeController.php b/src/Controller/HomeController.php
index 8df8aa9271fce0a6cb4cdd90c26d5477009befb8..ea91560d27c33e85710c9d663afedd21dcad384c 100644
--- a/src/Controller/HomeController.php
+++ b/src/Controller/HomeController.php
@@ -1,5 +1,5 @@
 <?php
-
+// Edited By Néo Schobert & Yanis Bentoumi
 namespace App\Controller;
 
 use App\Entity\Invitation;
@@ -68,4 +68,4 @@ class HomeController extends AbstractController
             'links' => $links,
         ]);
     }
-}
\ No newline at end of file
+}
diff --git a/src/Controller/RegistrationController.php b/src/Controller/RegistrationController.php
index fe2d31428483c7af13d7dc587179dfe26956c32e..1301edd5918a2281f21b40cb4f54bce14859c8af 100644
--- a/src/Controller/RegistrationController.php
+++ b/src/Controller/RegistrationController.php
@@ -1,5 +1,5 @@
 <?php
-
+// Edited By Néo Schobert & Yanis Bentoumi
 namespace App\Controller;
 
 use App\Entity\User;
@@ -59,4 +59,4 @@ class RegistrationController extends AbstractController
             'registrationForm' => $form->createView(),
         ]);
     }
-}
\ No newline at end of file
+}
diff --git a/src/Controller/SecurityController.php b/src/Controller/SecurityController.php
index cd9606a623615513f0c59a9bbc8e7892aa1c007b..a29cc788e63a13696f18f1cb946f229374925cd3 100644
--- a/src/Controller/SecurityController.php
+++ b/src/Controller/SecurityController.php
@@ -1,5 +1,5 @@
 <?php
-
+// Edited By Néo Schobert & Yanis Bentoumi 
 namespace App\Controller;
 
 use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
@@ -36,4 +36,4 @@ class SecurityController extends AbstractController
     {
         // Ce contrôleur peut rester vide, Symfony gère la déconnexion automatiquement
     }
-}
\ No newline at end of file
+}
diff --git a/src/Controller/UserController.php b/src/Controller/UserController.php
index 9c98ecfdee3ee61e8cbfa479bca2ef45a5bdab1e..2a74b3e7cb036d0904eaa0cb92be1bc41ddb61cc 100644
--- a/src/Controller/UserController.php
+++ b/src/Controller/UserController.php
@@ -1,5 +1,5 @@
 <?php
-
+// Edited By Néo Schobert & Yanis Bentoumi
 namespace App\Controller;
 
 use App\Entity\Wishlist;
@@ -132,4 +132,4 @@ final class UserController extends AbstractController
     }
 
     
-}
\ No newline at end of file
+}
diff --git a/src/Entity/User.php b/src/Entity/User.php
index c9102c16b0bd860afe926e34a6e2b346b12e2904..f1b6cc6cfcb7d37a0c6b4eed11fcd8a96d8bef94 100644
--- a/src/Entity/User.php
+++ b/src/Entity/User.php
@@ -1,5 +1,5 @@
 <?php
-
+// Edited By Néo Schobert & Yanis Bentoumi
 namespace App\Entity;
 
 use App\Repository\UserRepository;
diff --git a/src/Form/RegistrationFormType.php b/src/Form/RegistrationFormType.php
index 663fb6b845b3f88533933ee54b5357ba22c77ed8..9224484dafeba3a38a4fdc5b6153915e3147f2ac 100644
--- a/src/Form/RegistrationFormType.php
+++ b/src/Form/RegistrationFormType.php
@@ -1,5 +1,5 @@
 <?php
-
+// Edited By Néo Schobert & Yanis Bentoumi
 namespace App\Form;
 
 use App\Entity\User;
@@ -72,4 +72,4 @@ class RegistrationFormType extends AbstractType
             'data_class' => User::class,
         ]);
     }
-}
\ No newline at end of file
+}
diff --git a/src/Form/UserType.php b/src/Form/UserType.php
index fbb140a00611683f6c38f08660de55994ced4d1d..d0feb76caa5f2eac800fc642a708078b1aa3c3f4 100644
--- a/src/Form/UserType.php
+++ b/src/Form/UserType.php
@@ -1,5 +1,5 @@
 <?php
-
+// Edited By Néo Schobert & Yanis Bentoumi
 namespace App\Form;
 
 use App\Entity\User;
@@ -37,4 +37,4 @@ class UserType extends AbstractType
             'data_class' => User::class,
         ]);
     }
-}
\ No newline at end of file
+}
diff --git a/src/Repository/ItemRepository.php b/src/Repository/ItemRepository.php
index 1d57e0458ffc005511fbbefc7e45b7d958689ceb..1bfa10a8fd6266b085d8b6b2e6047bb053c26e0f 100644
--- a/src/Repository/ItemRepository.php
+++ b/src/Repository/ItemRepository.php
@@ -1,5 +1,5 @@
 <?php
-
+// Edited By Néo Schobert & Yanis Bentoumi
 namespace App\Repository;
 
 use App\Entity\Item;
diff --git a/src/Repository/PurchaseProofRepository.php b/src/Repository/PurchaseProofRepository.php
index 69ff9d66819ea9aed1817f30af32ce2b45be3c3f..3a443971ba07ff65391379281dba2cbc6634cf0a 100644
--- a/src/Repository/PurchaseProofRepository.php
+++ b/src/Repository/PurchaseProofRepository.php
@@ -1,4 +1,5 @@
 <?php
+// Edited By Néo Schobert & Yanis Bentoumi
 
 namespace App\Repository;
 
diff --git a/src/Repository/UserRepository.php b/src/Repository/UserRepository.php
index 58793646c59e2a296843548663a195d99b0d8f75..3ab6a9d87367d4feb9bafa3f292e1f71317d40a2 100644
--- a/src/Repository/UserRepository.php
+++ b/src/Repository/UserRepository.php
@@ -1,5 +1,5 @@
 <?php
-
+// Edited By Néo Schobert & Yanis Bentoumi
 namespace App\Repository;
 
 use App\Entity\User;
diff --git a/templates/admin/dashboard.html.twig b/templates/admin/dashboard.html.twig
index ad56b4c4c43d598a4ff2fdc68185a156669b4435..ff0e0cf778cf75d253cb2c69952b5b95e2de1933 100644
--- a/templates/admin/dashboard.html.twig
+++ b/templates/admin/dashboard.html.twig
@@ -1,3 +1,4 @@
+{# Edited By Néo Schobert & Yanis Bentoumi #}
 {% extends 'base.html.twig' %}
 
 {% block title %}Administration{% endblock %}
@@ -116,4 +117,4 @@
         </div>
     </div>
 </div>
-{% endblock %}
\ No newline at end of file
+{% endblock %}
diff --git a/templates/admin/index.html.twig b/templates/admin/index.html.twig
index 5e68ff4e7a5e497b75dd457e0f744777635d1ede..bfb9d7f3e6d2a105b137b155715beb8e98287fc5 100644
--- a/templates/admin/index.html.twig
+++ b/templates/admin/index.html.twig
@@ -1,3 +1,4 @@
+{# Edited By Néo Schobert & Yanis Bentoumi #}
 {% extends 'base.html.twig' %}
 
 {% block title %}Hello AdminController!{% endblock %}
diff --git a/templates/admin/users.html.twig b/templates/admin/users.html.twig
index f663e661e79720f37ada66c09686c02ba51cc525..d339b0c76c14f8e572fb7904364cec530e123e0c 100644
--- a/templates/admin/users.html.twig
+++ b/templates/admin/users.html.twig
@@ -1,3 +1,4 @@
+{# Edited By Néo Schobert & Yanis Bentoumi #}
 {% extends 'base.html.twig' %}
 
 {% block title %}User Management{% endblock %}
@@ -63,4 +64,4 @@
             </section>
         </div>
     </main>
-{% endblock %}
\ No newline at end of file
+{% endblock %}
diff --git a/templates/registration/index.html.twig b/templates/registration/index.html.twig
index e7ded79bcf6cbee1615e2aec99461f2ee3d298a3..1a3a213c26e7efde776bfdc847f48f5c93a6a307 100644
--- a/templates/registration/index.html.twig
+++ b/templates/registration/index.html.twig
@@ -1,3 +1,4 @@
+{# Edited By Néo Schobert & Yanis Bentoumi #}
 {% extends 'base.html.twig' %}
 
 {% block title %}Hello RegistrationController!{% endblock %}
diff --git a/templates/registration/register.html.twig b/templates/registration/register.html.twig
index 674cedbe54d48c561b8145672e4fb21e01fdc91d..0d7ff8e26d4c5d29d0788efafb4e2f57ab3e8128 100644
--- a/templates/registration/register.html.twig
+++ b/templates/registration/register.html.twig
@@ -1,3 +1,4 @@
+{# Edited By Néo Schobert & Yanis Bentoumi #}
 {% extends 'base.html.twig' %}
 
 {% block title %}Inscription{% endblock %}
@@ -23,4 +24,4 @@
         <button type="submit" class="btn btn-primary">S'inscrire</button>
     {{ form_end(registrationForm) }}
 </div>
-{% endblock %}
\ No newline at end of file
+{% endblock %}
diff --git a/templates/user/index.html.twig b/templates/user/index.html.twig
index bea6b09038379ee264d5ba67bf9e5ae757eb49f2..2a3f5b522cd9390366559ebb128b9720a3fdbba9 100644
--- a/templates/user/index.html.twig
+++ b/templates/user/index.html.twig
@@ -1,3 +1,4 @@
+{# Edited By Néo Schobert & Yanis Bentoumi #}
 {% extends 'base.html.twig' %}
 
 {% block title %}Hello UserController!{% endblock %}