This repository was archived by the owner on Dec 12, 2023. It is now read-only.
generated from course-files/BBT4206-Lab15of15-ConsumePlumberAPIOutput
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprediction.html
More file actions
39 lines (30 loc) · 1.31 KB
/
prediction.html
File metadata and controls
39 lines (30 loc) · 1.31 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
<!DOCTYPE html>
<html>
<head>
<title>Symptoms Prediction Form</title>
</head>
<body>
<h2>Symptoms Prediction</h2>
<form method="post" action="prediction.php">
<!-- Input fields for symptoms -->
<label for="Symptom_1">Symptom 1:</label>
<input type="text" id="Symptom_1" name="Symptom_1"><br><br>
<label for="Symptom_2">Symptom 2:</label>
<input type="text" id="Symptom_2" name="Symptom_2"><br><br>
<label for="Symptom_3">Symptom 3:</label>
<input type="text" id="Symptom_3" name="Symptom_3"><br><br>
<label for="Symptom_4">Symptom 4:</label>
<input type="text" id="Symptom_4" name="Symptom_4"><br><br>
<label for="Symptom_5">Symptom 5:</label>
<input type="text" id="Symptom_5" name="Symptom_5"><br><br>
<label for="Symptom_6">Symptom 6:</label>
<input type="text" id="Symptom_6" name="Symptom_6"><br><br>
<label for="Symptom_7">Symptom 7:</label>
<input type="text" id="Symptom_7" name="Symptom_7"><br><br>
<label for="Symptom_8">Symptom 8:</label>
<input type="text" id="Symptom_8" name="Symptom_8"><br><br>
<!-- Add more input fields for other symptoms (Symptom_3, Symptom_4, etc.) -->
<input type="submit" value="Predict">
</form>
</body>
</html>