forked from dhairyagothi/100_days_100_web_project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
67 lines (61 loc) · 2.64 KB
/
index.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
59
60
61
62
63
64
65
66
67
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>MedConsult</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<br>
<br>
<h1>MedConsult</h1>
<p>Connecting Local Doctors with Specialists</p>
</header>
<main>
<section id="consultation-form">
<h2 >Request a Consultation</h2>
<form id="requestForm">
<label for="doctorName">Doctor's Name:</label>
<input type="text" id="doctorName" name="doctorName" required placeholder="Doctor's Name">
<label for="patientCondition">Patient's Condition:</label>
<textarea id="patientCondition" name="patientCondition" placeholder="Condition" required></textarea>
<label for="specialistType">Specialist Needed:</label>
<input type="text" id="specialistSearch" placeholder="Search Specialist...">
<select id="specialistType" name="specialistType" required></select>
<button type="submit">Submit</button>
</form>
</section>
<section id="consultation-status">
<h2>Consultation Status</h2>
<div id="statusMessage"></div>
<div id="loading" style="display:none;">Loading...</div>
</section>
<section id="specialist-response" style="display:none;">
<h2>Provide Your Suggestion</h2>
<form id="responseForm">
<label for="consultationId">Consultation ID:</label>
<input type="text" id="consultationId" name="consultationId" required>
<label for="suggestion">Your Suggestion:</label>
<textarea id="suggestion" name="suggestion" required></textarea>
<button type="submit">Submit Suggestion</button>
</form>
</section>
<section id="consultation-history">
<h2>Consultation History</h2>
<ul id="historyList"></ul>
</section>
<section id="feedback">
<!-- <form id="feedbackForm">
<label for="feedbackMessage">Your Feedback:</label>
<textarea id="feedbackMessage" name="feedbackMessage" required></textarea>
<button type="submit">Submit Feedback</button>
</form> -->
<a href="feedback.html" class="feed" ><button>Give Feedback</button></a>
</section>
</main>
<script src="script.js"></script>
</body>
</html>
<!-- 🧘🏼♀️🧘🏼♀️ 👨🏼⚕️👨🏼⚕️ -->