-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPatientsForm.html
More file actions
40 lines (27 loc) · 1.13 KB
/
PatientsForm.html
File metadata and controls
40 lines (27 loc) · 1.13 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
<html>
<head>
<title>Home</title>
</head>
<body>
<h2>Patient Information Form</h2>
<form action="add_patients.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="primary_physician">Primary Physician</label><br>
<input type="text" id"primary_physician" name="primary_physician"><br>
<label for="phoneNumber">Phone Number:</label><br>
<input type="text" id="phoneNumber" name="phoneNumber"><br>
<label for="address">Address:</label><br>
<input type="text" id=" address" name="address"><br>
<label for="DOB">Date Of Birth:</label><br>
<input type="date" id="DOB" name="DOB"><br>
<label for="username">Username:</label><br>
<input type="text" id="username" name="username"><br>
<label for="password">Password:</label><br>
<input type="text" id="password" name="password"><br>
<input type="submit"name="register" id="register_patients">
</form>
</body>
</html>