-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDoctorsForm.html
More file actions
42 lines (29 loc) · 1.08 KB
/
DoctorsForm.html
File metadata and controls
42 lines (29 loc) · 1.08 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
<html>
<head>
<style>
body{background-color:#3B843E ;}
h2{color:#F29918;}
</style>
<title>Doctor's Sign up</title>
</head>
<body>
<h2>Doctor's Sign up</h2>
<form action= "add_Doctors.php" method="post">
<label for="fname">First name:</label><br>
<input type="text" id="fname" name="fname"><br>
<label for="lname">Last name</label><br>
<input type="text" id="lname" name="lname"><br>
<label for="YOE">Years of Experience</label><br>
<input type="text" id"YOE" name="YOE"><br>
<label for="address">Address:</label><br>
<input type="text" id=" address" name="address"><br>
<label for="phoneNumber">Phone Number:</label><br>
<input type="text" id="phoneNumber" name="phoneNumber"><br>
<label for="specialty">Specialty:</label><br>
<input type="text id="specialty" name="specialty"><br>
<label for="email">Email:</label><br>
<input type="text id="email" name="email"><br>
<input type="submit" name="add" id="add_Doctors">
</form>
</body>
</html>