-
Notifications
You must be signed in to change notification settings - Fork 2
/
medical history.html
58 lines (49 loc) · 1.68 KB
/
medical history.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Medical History</title>
<link rel="stylesheet" href="style.css">
</head>
<body style="background-color: #42636A;">
<<nav>
<a href="index.html">
<div class="logo">MedQ</div>
</a>
<ul class="nav-links">
<li><a href="index.html">Home</a></li>
<li><a href="department.html">Departments</a></li>
<li><a href="dashboard.html">Dashboard</a></li>
<li><a href="diagnosis.html">Disease Predictor </a></li>
<li><a href="medical history.html">Medical History</a></li>
<li><a href="login.html">Login</a></li>
</ul>
</nav>
<!-- Upload Medical Documents Section -->
<section id="upload-documents" class="medical-history">
<h2>Upload Medical Documents</h2>
<form id="documentUploadForm" onsubmit="uploadFile(); return false;">
<div class="form-group">
<label for="fileInput">Choose File:</label>
<input type="file" id="fileInput" accept=".pdf" />
</div>
<div class="form-group">
<button type="submit">Upload Document</button>
</div>
</form>
</section>
<!-- Display Uploaded Documents Section -->
<section id="display-documents" class="medical-history">
<h2>Uploaded Documents</h2>
<ul id="documentList"></ul>
</section>
<!-- Footer -->
<footer>
<p>© 2024 MedQ. All rights reserved.</p>
</footer>
<script src="https://www.gstatic.com/firebasejs/8.9.0/firebase-app.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.9.0/firebase-storage.js"></script>
<script src="script_docu.js"></script>
</body>
</html>