From 57507d64b4768134484260a6d9d7964e15901a80 Mon Sep 17 00:00:00 2001 From: Raghav <raghavsmart1213@gmail.com> Date: Wed, 26 Feb 2025 14:34:54 +0000 Subject: [PATCH] Header removed from login and index, pasted into header.php --- _templates/header.php | 20 ++++++++++++++++++++ index.php | 18 ------------------ login.php | 24 +++--------------------- 3 files changed, 23 insertions(+), 39 deletions(-) diff --git a/_templates/header.php b/_templates/header.php index 8458f6b..eb81b9d 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 b53ce39..f4d92b6 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 c447465..4ef60ed 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');?> -- GitLab