-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAppoint.html
More file actions
97 lines (91 loc) · 2.11 KB
/
Copy pathAppoint.html
File metadata and controls
97 lines (91 loc) · 2.11 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
<html>
<head>
<link rel="stylesheet" type="text/css" href="css/app.css">
<title>Appointment </title>
<style>
h1{color:darkslateblue;
text-align:center;}
body{background-image:url("app.jpg");
background-attachment: fixed;
background-size:cover;}
</style>
</head>
<body>
<h1><font face="Comic Sans MS" size=10>APPOINTMENT </font><h1>
<center><form>
<table>
<tr>
<th>Name of the Patient</th>
<td><input type="text" name="t1" placeholder="Enter Patient's Name"></td>
</tr>
<tr>
<th>Age</th>
<td><input type="number" name="t2" placeholder="Enter Age"></td>
</tr>
<tr>
<th>Contact Number</th>
<td><input type="text" name="t3" placeholder="Enter Contact Number"></td>
</tr>
<tr>
<th>Sex</th>
<td>
<input type="radio" name="sex" value="male">Male
<input type="radio" name="sex" value="female">Female
<input type="radio" name="sex" value="other">others<br>
</td>
</tr>
<tr>
<th>Blood Group</th>
<td><select>
<option value="Group">Group</option>
<option value="A+">A+</option>
<option value="B+">B+</option>
<option value="A-">A-</option>
<option value="B-">B-</option>
<option value="AB+">AB+</option>
<option value="AB-">AB-</option>
<option value="O+">O+</option>
<option value="O-">O-</option>
</select>
</td>
</tr>
<tr>
<th>symptoms</th>
<td><textarea rows="5" cols="25">
</textarea> </td>
</tr>
<tr>
<th>Doctor Name</th>
<td><select>
<option value="None">None</option>
<option value="Dr.Harish">Dr.Harish-Heart surgeon</option>
<option value="Dr.Rakesh varma">Dr.Rakesh varma-pediatrician</option>
<option value="Dr.Amrutha">Dr.Amrutha-Gynecologist</option>
<option value="Dr.Rajashekar">Dr.Rajashekar-ENT</option>
</select>
</td>
</tr>
<tr>
<th>Date</th>
<td><input type="date">
</td>
</tr>
<tr>
<th>Doctor Availability</th>
<td><select name="timings">
<optgroup label="Morning">
<option value="9:30 to 1:00">9:30 to 1:00</option>
</optgroup>
<optgroup label="Evening">
<option value="5:00 to 9:30">5:00 to 9:30</option>
</optgroup>
</select>
</td>
</tr>
<br>
</table>
<input type="submit" name="appoint" value="submit">
</form>
</center>
</body>
</html>