-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathabout.php
More file actions
86 lines (71 loc) · 2.7 KB
/
about.php
File metadata and controls
86 lines (71 loc) · 2.7 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CS306DB</title>
<link rel = "stylesheet" href = "style.css">
<style>
.box {
position: absolute;
bottom: 700px;
right: 300px;
font-size: 18px;
width: 500px;
}
</style>
</head>
<body>
<div class="container">
<div class="navbar">
<div class = "logo">
<a href="#"><img src="su.jpg"></a>
</div>
<ul>
<li><a href = "index.php">Main Page</a></li>
<li><a href = "#">About</a></li>
<li><a href = "adminPage.php">Database Management</a></li>
<li><a href = "#">Login</a>
<div class="sub-menu-1">
<ul>
<li><a href="adminPage.php">Login as Admin </a></li>
<li><a href="employee_id.php">Login as Employee </a></li>
<li><a href="patientPage.php">Login as Patient </a></li>
</ul>
</div>
</li>
<li><a href = "employeeList.php">Çalışan Kadrosu</a></li>
</ul>
<div style = "position:absolute; left:1050px; top:150px;right: 130px;color:#181818;font-size:15px ">
<h1>
The purpose of this project was to create a database of a hospital.
This web page includes a database which stores data such as personal
information of doctors, nurses, clerks and patients, number of rooms,
price of medicine etc. With the help of this data, it is way more
easier employees to track patients. Additionally, patients can register
or login so as to be informed about their rooms, records and treatment.
</h1>
<br>
<h1>
★
Ataollah Hosseinzadeh Fard
</h1>
<br>
<h1>
★
Emirhan Delican
</h1>
<br>
<h1>
★
Mete Harun Akçay
</h1>
<br>
<h1>
★
Yağız Kılıçarslan
</h1>
</div>
</body>
</html>