-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
152 lines (145 loc) · 6.47 KB
/
Copy pathindex.php
File metadata and controls
152 lines (145 loc) · 6.47 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
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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
<!DOCTYPE HTML>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Online Diagnostic Lab Management System | Home Page</title>
<!-- Include necessary CSS files -->
<link href="css/bootstrap.css" rel="stylesheet" type="text/css" media="all">
<link href="css/style.css" rel="stylesheet" type="text/css" media="all">
<link rel="stylesheet" href="css/chocolat.css" type="text/css" media="screen" charset="utf-8">
<!-- Include necessary JavaScript files -->
<script src="js/jquery-1.8.3.min.js"></script>
<script src="js/modernizr.custom.97074.js"></script>
<script src="js/move-top.js"></script>
<script src="js/easing.js"></script>
<script src="js/jquery.chocolat.js"></script>
<script src="js/jquery.hoverdir.js"></script>
<script>
// Smooth scrolling for anchor links
jQuery(document).ready(function($) {
$(".scroll").click(function(event) {
event.preventDefault();
$('html,body').animate({scrollTop: $(this.hash).offset().top}, 1200);
});
});
// Initialize Chocolat lightbox for gallery images
$(function() {
$('.gallery a').Chocolat();
});
// Initialize hover direction effect for gallery images
$(function() {
$('#da-thumbs > li').each(function() {
$(this).hoverdir();
});
});
// Scroll to top functionality
$(document).ready(function() {
$().UItoTop({ easingType: 'easeOutQuart' });
});
</script>
</head>
<body>
<!-- Header Section -->
<div class="header" id="home">
<div class="header-top">
<div class="container">
<!-- Logo -->
<div class="logo">
<a href="index.php">ODLMS<span>lab</span></a>
</div>
<!-- Navigation Menu -->
<div class="top-menu">
<span class="menu"><img src="images/nav.png" alt="Menu" /></span>
<ul>
<li><a href="index.php" class="active scroll">Home</a></li>
<li><a href="#aboutus" class="scroll">About Us</a></li>
<li><a href="#gallery" class="scroll">Gallery</a></li>
<li><a href="admin/login.php">Admin</a></li>
<li><a href="user/login.php">Users</a></li>
<li><a href="employee/login.php">Employee</a></li>
</ul>
</div>
<!-- Mobile Menu Toggle Script -->
<script>
$("span.menu").click(function() {
$(".top-menu ul").slideToggle("slow");
});
</script>
<div class="clearfix"></div>
</div>
</div>
</div>
<!-- Content Section -->
<div class="content">
<!-- About Us Section -->
<div class="about-section" id="aboutus">
<div class="container">
<h3>Welcome to the Laboratory!</h3>
<div class="about-grids">
<div class="col-md-4 about-grid">
<img src="images/p1.jpg" class="img-responsive" alt="About Image 1">
<h4>Epsum Factorial</h4>
<p>Epsum factorial nonp quid pro quo hic escorol. Olypian quarrels et gorcongolium onp quid sic ad nauseum. Souvlaki ignitus.</p>
</div>
<div class="col-md-4 about-grid">
<img src="images/p2.jpg" class="img-responsive" alt="About Image 2">
<h4>Olypian Quarrels</h4>
<p>Epsum factorial nonp quid pro quo hic escorol. Olypian quarrels et gorcongolium onp quid sic ad nauseum. Souvlaki ignitus.</p>
</div>
<div class="col-md-4 about-grid">
<img src="images/p3.jpg" class="img-responsive" alt="About Image 3">
<h4>Epsum Factorial</h4>
<p>Epsum factorial nonp quid pro quo hic escorol. Olypian quarrels et gorcongolium onp quid sic ad nauseum. Souvlaki ignitus.</p>
</div>
<div class="clearfix"></div>
</div>
</div>
</div>
<!-- Gallery Section -->
<div class="gallery" id="gallery">
<div class="container">
<h3>Gallery</h3>
<div class="gallery-grids">
<section>
<ul id="da-thumbs" class="da-thumbs">
<!-- Gallery Images -->
<?php
$galleryImages = [
"g1.jpg", "g2.jpg", "g3.jpg", "g4.jpg",
"g5.jpg", "g6.jpg", "g7.jpg", "g8.jpg", "g9.jpg"
];
foreach ($galleryImages as $image) {
echo '
<li>
<a href="images/' . $image . '" rel="title" class="b-link-stripe b-animate-go thickbox">
<img src="images/' . $image . '" alt="Gallery Image">
<div>
<h5>Project</h5>
<span>Non suscipit leo fringilla non suscipit leo fringilla molestie</span>
</div>
</a>
</li>';
}
?>
<div class="clearfix"></div>
</ul>
</section>
</div>
</div>
</div>
</div>
<!-- Footer Section -->
<div class="footer-section">
<div class="container">
<div class="footer-bottom">
<p>Online Diagnostic Lab Management System @ 2025</p>
</div>
</div>
</div>
<!-- Scroll to Top Button -->
<a href="#" id="toTop" style="display: block;">
<span id="toTopHover" style="opacity: 1;"></span>
</a>
</body>
</html>