diff --git a/_templates/header.php b/_templates/header.php
index 8458f6bba610d8d749f7a55508894eeea0666c1d..eb81b9d82080ab1d5fbe1ef7f1c21c24cafcfb4e 100644
--- a/_templates/header.php
+++ b/_templates/header.php
@@ -1,3 +1,23 @@
+<!-- Header content -->
+<div class="collapse text-bg-dark" id="navbarHeader">
+    <div class="container">
+      <div class="row">
+        <div class="col-sm-8 col-md-7 py-4">
+          <h4>About</h4>
+          <p class="text-body-secondary">Add some information about the album below, the author, or any other background context. Make it a few sentences long so folks can pick up some informative tidbits. Then, link them off to some social networking sites or contact information.</p>
+        </div>
+        <div class="col-sm-4 offset-md-1 py-4">
+          <h4>Contact</h4>
+          <ul class="list-unstyled">
+            <li><a href="#" class="text-white">Follow on Twitter</a></li>
+            <li><a href="#" class="text-white">Like on Facebook</a></li>
+            <li><a href="#" class="text-white">Email me</a></li>
+          </ul>
+        </div>
+      </div>
+    </div>
+  </div>
+<!-- Header Bar -->
 <div class="navbar navbar-dark bg-dark shadow-sm">
     <div class="container">
       <a href="#" class="navbar-brand d-flex align-items-center">
diff --git a/index.php b/index.php
index b53ce393e2943af208cad43f12a01b46bff9f492..f4d92b67a8978ee63f8a19f7faefeb2fe41c05a1 100644
--- a/index.php
+++ b/index.php
@@ -158,24 +158,6 @@ include 'libs/load.php';
 
     
 <header data-bs-theme="dark">
-  <div class="collapse text-bg-dark" id="navbarHeader">
-    <div class="container">
-      <div class="row">
-        <div class="col-sm-8 col-md-7 py-4">
-          <h4>About</h4>
-          <p class="text-body-secondary">Add some information about the album below, the author, or any other background context. Make it a few sentences long so folks can pick up some informative tidbits. Then, link them off to some social networking sites or contact information.</p>
-        </div>
-        <div class="col-sm-4 offset-md-1 py-4">
-          <h4>Contact</h4>
-          <ul class="list-unstyled">
-            <li><a href="#" class="text-white">Follow on Twitter</a></li>
-            <li><a href="#" class="text-white">Like on Facebook</a></li>
-            <li><a href="#" class="text-white">Email me</a></li>
-          </ul>
-        </div>
-      </div>
-    </div>
-  </div>
 
   <!--To load header file from template  -->
   <?load_template('header')?>
diff --git a/login.php b/login.php
index c447465e0c1b9973a49d36c15106a1d7041b4bc6..4ef60ed8c62a6fdeda581ae0e80d9bd11c446847 100644
--- a/login.php
+++ b/login.php
@@ -162,37 +162,19 @@ include 'libs/load.php';
 
     
 <header data-bs-theme="dark">
-  <div class="collapse text-bg-dark" id="navbarHeader">
-    <div class="container">
-      <div class="row">
-        <div class="col-sm-8 col-md-7 py-4">
-          <h4>About</h4>
-          <p class="text-body-secondary">Add some information about the album below, the author, or any other background context. Make it a few sentences long so folks can pick up some informative tidbits. Then, link them off to some social networking sites or contact information.</p>
-        </div>
-        <div class="col-sm-4 offset-md-1 py-4">
-          <h4>Contact</h4>
-          <ul class="list-unstyled">
-            <li><a href="#" class="text-white">Follow on Twitter</a></li>
-            <li><a href="#" class="text-white">Like on Facebook</a></li>
-            <li><a href="#" class="text-white">Email me</a></li>
-          </ul>
-        </div>
-      </div>
-    </div>
-  </div>
-
+  
   <!--To load header file from template  -->
   <?load_template('header')?>
 </header>
 
-<main class="form-signin w-100 m-auto">
+
 
 <!-- To load login-content form to sign-in -->
 <?load_template('login-content');?>
 
 
 
-</main>
+
 
 <!-- To load footer (footer.php) from template folder -->
 <?load_template('footer');?>