updated footer template

This commit is contained in:
gtlsgamr 2022-08-10 21:00:21 +05:30
parent 9fa93b78f8
commit 5cb283cf31
5 changed files with 11 additions and 9 deletions

View File

@ -1,4 +1,4 @@
<?php include("./header.php")?>
<?php include("./includes/header.php")?>
<main>
<p>You can support us by providing small amount of chanda (Donation).
It doesnt matter how much or little you donate because we know
@ -23,5 +23,4 @@
</ul>
<h5>Total: 1231</h5>
</main>
</body>
</html>
<?php include("./includes/footer.php")?>

5
includes/footer.php Normal file
View File

@ -0,0 +1,5 @@
<hr>
<footer>2022</footer>
</body>
</html>

View File

@ -1,4 +1,4 @@
<?php include("./header.php")?>
<?php include("./includes/header.php")?>
<main>
<h3>Bharatvarsh, the year is 2022.</h3>
<hr>
@ -26,5 +26,4 @@
<li>The telegram is no longer operational. Please switch ASAP.</li>
<h6>Registrations open soon!</h6>
</main>
</body>
</html>
<?php include("./includes/footer.php")?>

View File

@ -1,5 +1,5 @@
<?php
include("header.php");
include("./includes/header.php");
if($_SERVER['REQUEST_METHOD']=="POST"){
if($_POST['name']){
$username = filter_var($_POST['name'],FILTER_SANITIZE_STRING );
@ -52,5 +52,4 @@ if($_SERVER['REQUEST_METHOD']=="POST"){
</div>
</form>
</main>
<?php include("./includes/footer.php")?>