-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathblank.php
More file actions
25 lines (24 loc) · 832 Bytes
/
Copy pathblank.php
File metadata and controls
25 lines (24 loc) · 832 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<?php
session_start();
?>
<!DOCTYPE html>
<html data-bs-theme="light" lang="en">
<?php include 'head.php'; ?>
<body id="page-top">
<div id="wrapper">
<?php include 'navbar.php'; ?>
<div class="d-flex flex-column" id="content-wrapper">
<div id="content">
<?php include 'header.php'; ?>
<div class="container-fluid">
<h3 class="text-dark mb-1">Blank Page</h3>
</div>
</div>
<?php include 'footer.php'; ?>
</div><a class="border rounded d-inline scroll-to-top" href="#page-top"><i class="fas fa-angle-up"></i></a>
</div>
<script src="assets/bootstrap/js/bootstrap.min.js"></script>
<script src="assets/js/bs-init.js"></script>
<script src="assets/js/theme.js"></script>
</body>
</html>