-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
59 lines (51 loc) · 2.25 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
59
<?php
//Header
require_once ('./header.php');
?>
<main>
<!-- First Parallax Section -->
<!-- First Image Section -->
<div class="jumbotron sectionImg imageSec1">
<h1 class="display-3 pt-1">Welcome to<br>Process Management & Monitoring System</h1>
<p class="lead">
<a class="btn btn-danger btn-lg btn-md" href="./dashboard/#process" role="button">Issue a Ticket</a>
<a class="btn btn-info btn-lg btn-md" href="./dashboard/#processtoyou" role="button">Check Status</a>
</p>
</div>
<!-- First Content Section
<div class="jumbotron sectionContent contentSec" id="announcements">
<h1 class="display-3">Announcements Section</h1>
<p class="lead">Here you will find announcements posted by various Department Heads and Website Admin regarding new updates and features.</p>
</div> -->
<!-- End First Parallax Section -->
<!-- Second Parallax Section -->
<!-- Second Image Section
<div class="jumbotron sectionImg imageSec2">
<h1 class="display-3">Announcements</h1>
<p class="lead">Stay up-to-date with latest announcements from various Department Heads.</p>
<p class="lead">
<a class="btn btn-success btn-lg btn-md" href="#" role="button">Check Announcements</a>
</p>
</div>-->
<!-- Second Content Section -->
<div class="jumbotron sectionContent contentSec" id="about">
<h1 class="display-3">About the Project</h1>
<p class="lead">This systen maintain and manages all the Processes.<br>
This E-Process Management & Monitoring System is an interactive solution for solving the Processes online which saves lots of time for the stakeholders.</p>
</div>
<!-- End Second Parallax Section -->
<!-- Third Parallax Section -->
<!-- Third Image Section -->
<div class="jumbotron sectionImg imageSec3">
<h1 class="display-3">Our Team</h1>
<p class="lead">We deliver solutions to various Real life problems</p>
<p class="lead">
<a class="btn btn-secondary btn-lg btn-md" href="#" role="button">Our Team</a>
</p>
</div>
<!-- Add More Parallax Sections Here -->
</main>
<?php
// Footer
require_once ('./footer.php');
?>