-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathindex.php
executable file
·109 lines (97 loc) · 3.78 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="">
<meta name="author" content="MartDevelopers">
<meta name="generator" content="Jekyll v3.8.5">
<link rel="shortcut icon" href="Admin/assets/img/logo-fav.png">
<title>Orion Healthcare Hospital Management System </title>
<!-- Bootstrap core CSS -->
<link href="assets/css/bootstrap.min.css" rel="stylesheet">
<style>
.bd-placeholder-img {
font-size: 1.125rem;
text-anchor: middle;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
@media (min-width: 768px) {
.bd-placeholder-img-lg {
font-size: 3.5rem;
}
}
</style>
<!-- Custom styles for this template -->
<link href="assets/css/pricing.css" rel="stylesheet">
</head>
<body>
<div class="d-flex flex-column flex-md-row align-items-center p-3 px-md-4 mb-3 bg-white border-bottom shadow-sm">
<h5 class="my-0 mr-md-auto font-weight-normal">OHCMS</h5>
</div>
<div class="pricing-header px-3 py-3 pt-md-5 pb-md-4 mx-auto text-center">
<h1 class="display-4">OHCMS Modules.</h1>
<p class="lead">Please login to your respective department module.</p>
</div>
<div class="container">
<div class="card-deck mb-3 text-center">
<div class="card mb-4 shadow-sm">
<div class="card-header">
<h4 class="my-0 font-weight-normal">Registration Desk</h4>
</div>
<div class="card-body">
<h1 class="card-title pricing-card-title"></h1>
<a href="RegistrationDesk/employee_login.php" class="btn btn-lg btn-block btn-outline-primary">Login</a>
</div>
</div>
</div>
<div class="card-deck mb-3 text-center">
<div class="card mb-4 shadow-sm">
<div class="card-header">
<h4 class="my-0 font-weight-normal">Laboratory </h4>
</div>
<div class="card-body">
<h1 class="card-title pricing-card-title"></small></h1>
<a href="Laboratory/employee_login.php" type="button" class="btn btn-lg btn-block btn-outline-primary">Login</a>
</div>
</div>
<div class="card mb-4 shadow-sm">
<div class="card-header">
<h4 class="my-0 font-weight-normal">Pharmacy</h4>
</div>
<div class="card-body">
<h1 class="card-title pricing-card-title"></h1>
<a href="Pharmacy/employee_login.php" type="button" class="btn btn-lg btn-block btn-outline-primary">Login</a>
</div>
</div>
<div class="card mb-4 shadow-sm">
<div class="card-header">
<h4 class="my-0 font-weight-normal">Departmental Heads</h4>
</div>
<div class="card-body">
<h1 class="card-title pricing-card-title"></h1>
<a href="DepartmentHead/dept_head_login.php" class="btn btn-lg btn-block btn-outline-primary">Login</a>
</div>
</div>
<div class="card mb-4 shadow-sm">
<div class="card-header">
<h4 class="my-0 font-weight-normal">Administrator </h4>
</div>
<div class="card-body">
<h1 class="card-title pricing-card-title"></h1>
<a href="Admin/ohcms_admin_login.php" class="btn btn-lg btn-block btn-outline-primary">Login</a>
</div>
</div>
</div>
<footer class="pt-4 my-md-5 pt-md-5 border-top">
<div class="row">
<div class="col-12 col-md">
<small class="d-block mb-3 text-muted">© All Rights Reserved Orion Healthcare Hospital Management System 2019-<?php echo date('Y'); ?>. Crafted With Love by <a href="https://martmbithi.github.io" target="_blank">MartDevelopers</a>.</small>
</div>
</footer>
</div>
</body>
</html>