forked from lgu-ms/lgu-ms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
58 lines (48 loc) · 1.64 KB
/
index.php
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<?php
include("include/session.php");
$page_publisher = "https://facebook.com/melvinjonesrepol";
$page_modified_time = "2023-10-08T13:37:36+00:00";
$page_title = "Digital Barangay - A LGU Management System";
$page_description = "";
$page_keywords = "digital barangay, lgu, lgu management system";
$page_image = "http://localhost/lgu/images/cover.png";
$page_author = "Melvin Jones Repol";
$page_canonical = "http://localhost/lgu/";
$page_url = $page_canonical;
$directory = "";
$directory_img = "../";
$isForm = false;
include("include/header.php");
?>
<body class="d-flex flex-column min-vh-100">
<?php include("include/nav.php"); ?>
<header>
<div class="card mb-3">
<div class="row g-0">
<div class="col-md-4" id="mobile">
<img class="rounded mx-auto d-block img-fluid shadow"
src="images/cover.png">
</div>
<div class="col-md-8">
<div class="card-body">
<h5 style="color: #4285f4;">Welcome to</h5>
<h1 class="card-title"><strong>Digital Barangay</strong></h1>
<p class="card-text sub-title">
A proposed Local Government Unit Management<br>System Project</p>
<br>
<button type="button" class="btn btn-primary shadow">Learn more</button>
<a class="accnt px-3">Procurement</a>
</div>
</div>
<div class="col-md-4" id="desktop">
<img class="rounded mx-auto d-block img-fluid shadow"
src="images/cover.png">
</div>
</div>
</div>
</header>
<main class="text-center">
</main>
<?php include("include/footer.php");?>
</body>
</html>