-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php~
More file actions
44 lines (32 loc) · 1.2 KB
/
index.php~
File metadata and controls
44 lines (32 loc) · 1.2 KB
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<!DOCTYPE html>
<html>
<head>
<title> Home </title>
<!-- This section is for the Head -->
<?php include($_SERVER['DOCUMENT_ROOT']. '/comp353-project/public/view/include/Head.php');?>
</head>
<body>
<!-- Page Content -->
<!-- This Section is for the Navigation file -->
<?php include($_SERVER['DOCUMENT_ROOT']. '/comp353-project/public/view/include/Header.php');?>
<!-- INCLUDE CONTENT OF PAGE HERE -->
<div class="site-wrapper" id="page-content-wrapper">
<div class="site-wrapper-inner">
<div class="cover-container">
<div class="inner cover">
<h1 class="cover-heading">Welcome to EZ-RIDERZ!</h1>
<p class="lead">Your best option for ride-sharing.</p>
<?php echo $_SERVER[''];?>
<p class="lead">
<a href="#" class="btn btn-lg btn-default">Get started</a>
</p>
</div>
</div>
</div>
</div>
<!-- END OF CONTENT -->
<div><?php echo $this_page; ?></div>
<!-- This Section is for the footer -->
<!-- ?php include($_SERVER['DOCUMENT_ROOT']. '/comp353-project/public/view/include/Footer.php');? -->
</body>
</html>