-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaboutus.php
More file actions
41 lines (33 loc) · 1.99 KB
/
aboutus.php
File metadata and controls
41 lines (33 loc) · 1.99 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>About Us - Inventory Management System</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css">
<style>
.about-container {
margin-top: 50px;
padding: 30px;
background: #f8f9fa;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
</style>
</head>
<body>
<?php include 'partials/_nav.php'; ?>
<div class="container about-container">
<h2 class="text-center mb-4">About Us</h2>
<p>Hello! 👋 I'm <strong>Deepak Misal</strong>, a final-year Bachelor of Engineering (B.E.) student. This Inventory Management System is a part of my academic projects .</p>
<p>The project focuses on simplifying and digitizing the process of managing chemical, glassware, and instrument inventories within laboratories or educational institutions. With features like dynamic record updates, deletions, transaction logging, and user authentication, it ensures accuracy and accountability in lab resource management.</p>
<p>This system is built using <strong>PHP</strong>, <strong>MySQL</strong>, <strong>XAMPP</strong>, and <strong>Bootstrap</strong>, following standard web development practices. The goal is to create an efficient, user-friendly tool that can be easily adopted and extended for real-world applications in academic or research environments.</p>
<p>If you have any questions, suggestions, or feedback, feel free to reach out!</p>
<hr>
<p class="text-muted text-right">Designed & Developed by DEEPAK MISAL </p>
</div>
<script src="https://code.jquery.com/jquery-3.4.1.slim.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.0/dist/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js"></script>
</body>
</html>