-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
80 lines (66 loc) · 2.43 KB
/
index.html
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
Skip to content
Search or jump to…
Pull requests
Issues
Marketplace
Explore
@quantFactory Sign out
0
0 0 quantFactory/deep_LIQ
Code Issues 0 Pull requests 0 Projects 0 Wiki Insights Settings
deep_LIQ/flask_apps/static/predict.html
11b6258 9 hours ago
@quantFactory quantFactory emp detaiils added
54 lines (39 sloc) 1.95 KB
<html>
<head>
<title>PredictIQ</title>
</head>
<link rel="shortcut icon" type="image/x-icon" href="./dl.png" />
<script src="jquery-3.3.1.min.js"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script>
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
<body>
<script>
$("#read_details").click(function(){
let reader = new FileReader();
reader.onload = function(e){
$("#prob").text() = reader.text()
}
}
</script>
<div style="background-color: aquamarine">
<h3 style="color:rgb(0, 0, 0)">Attrition Prediction</h3>
<p>Predicts the probability of employee attrition</p>
</div>
<div class="container">
<div style="background-color: rgba(87, 180, 149, 0.486)">
<form>
<div class="form-group">
<label for="exampleFormControlFile1">Insert employee details here: </label>
<label id="prob" >prob</label>
<div>
<button id="display_proba" type="button" class="btn btn-success"style="margin:4px"> predict</button>
</div>
<lable > Attrition probability is : </lable><label id="prob"> %000 </label>
</div>
</form>
</div>
</div>
</body>
</html>
© 2018 GitHub, Inc.
Terms
Privacy
Security
Status
Help
Contact GitHub
Pricing
API
Training
Blog
About
Press h to open a hovercard with more details.