-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpred.html
More file actions
40 lines (39 loc) · 1.84 KB
/
Copy pathpred.html
File metadata and controls
40 lines (39 loc) · 1.84 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Prediction Request Form</title>
<script src="pred.js"></script>
</head>
<body>
<a href="index.html"><button>Back</button></a>
<form id="predictionForm">
<h3>Employee 1</h3>
<label for="department1">Department:</label>
<input type="text" id="department1" name="department1"><br>
<label for="region1">Region:</label>
<input type="text" id="region1" name="region1"><br>
<label for="education1">Education:</label>
<input type="text" id="education1" name="education1"><br>
<label for="gender1">Gender:</label>
<input type="text" id="gender1" name="gender1"><br>
<label for="recruitment_channel1">Recruitment Channel:</label>
<input type="text" id="recruitment_channel1" name="recruitment_channel1"><br>
<label for="no_of_trainings1">No of Trainings:</label>
<input type="text" id="no_of_trainings1" name="no_of_trainings1"><br>
<label for="age1">Age:</label>
<input type="text" id="age1" name="age1"><br>
<label for="previous_year_rating1">Previous Year Rating:</label>
<input type="text" id="previous_year_rating1" name="previous_year_rating1"><br>
<label for="length_of_service1">Length of Service:</label>
<input type="text" id="length_of_service1" name="length_of_service1"><br>
<label for="awards_won1">Awards Won:</label>
<input type="text" id="awards_won1" name="awards_won1"><br>
<label for="avg_training_score1">Avg Training Score:</label>
<input type="text" id="avg_training_score1" name="avg_training_score1"><br>
<button type="submit">Submit</button>
</form>
<div id="predictionResult"></div>
</body>
</html>