-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDiabetes prediction.html
117 lines (92 loc) · 4.45 KB
/
Diabetes prediction.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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<!DOCTYPE html>
<!-- saved from url=(0042)https://sentimental-analys.herokuapp.com/# -->
<html lang="en"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1.0">
<title>Diabetes prediction</title>
<!-- CSS -->
<link href="./Diabetes prediction_files/icon" rel="stylesheet">
<link href="./Diabetes prediction_files/materialize.css" type="text/css" rel="stylesheet" media="screen,projection">
<link href="./Diabetes prediction_files/style.css" type="text/css" rel="stylesheet" media="screen,projection">
</head>
<body>
<nav class="light-blue lighten-1" role="navigation">
<div class="nav-wrapper container"><a id="logo-container" href="https://sentimental-analys.herokuapp.com/#" class="brand-logo">Diabetes Prediction</a>
<ul class="right hide-on-med-and-down">
<li><a href="https://sentimental-analys.herokuapp.com/#">Home</a></li>
</ul>
</div></nav>
<div class="section no-pad-bot" id="index-banner">
<div class="container">
<h5 style="text-align: center; color: brown; font-weight: 600;"></h5>
<h1 class="header center orange-text">Diabetes Prediction</h1>
<div class="row center">
<h5 class="header col s12 light">Predict the probability of having Diabetes
<br>
</h5>
</div>
<div class="row">
<form action="https://sentimental-analys.herokuapp.com/predict" method="post" class="col s12">
<div class="row">
<div class="input-field col s4">
<label for="first_name"><b>Pregnancies</b></label>
<br>
<input placeholder="No. of Pregnancies" name="1" id="first_name" type="text" class="validate">
</div>
<div class="input-field col s4">
<label for="last_name"><b>Glucose </b></label>
<br>
<input id="last_name" name="2" placeholder="Glucose level in sugar" type="text" class="validate">
</div>
<div class="input-field col s4">
<label for="_name"><b>BloodPressure</b></label>
<br>
<input id="_name" name="3" placeholder="BloodPressure" type="text" class="validate">
</div>
<div class="input-field col s4">
<label for="first_name"><b>SkinThickness</b></label>
<br>
<input placeholder="SkinThickness" name="4" id="first_name" type="text" class="validate">
</div>
<div class="input-field col s4">
<label for="last_name"><b>Insulin</b></label>
<br>
<input id="last_name" name="5" placeholder="Insulin level" type="text" class="validate">
</div>
<div class="input-field col s4">
<label><b>BMI</b></label>
<br>
<input name="6" placeholder="Body Mass Index">
</div>
<div class="input-field col s4">
<label for="last_name"><b>DiabetesPedigreeFunction</b></label>
<br>
<input id="last_name" name="7" placeholder="DiabetesPedigreeFunction" type="text" class="validate">
</div>
<div class="input-field col s4">
<label for="_name"><b>Age</b></label>
<br>
<input id="_name" name="8" placeholder="Age" type="text" class="validate">
</div>
</div>
<div class="row center">
<button type="submit" class="btn-large waves-effect waves-light orange">Predict Probability</button>
</div>
</form>
</div>
<br>
<br><br>
</div>
</div>>
<footer class="page-footer orange">
<div class="footer-copyright">
<div class="container" style="padding-bottom: 1rem; position: fixed; font-size: 1.2rem; margin-left: 5rem;">
<p>Yeswanth Sharath Vachan</p>
<p>[email protected]</p>
</div>
</div>
</footer>
<!-- Scripts-->
<script src="./Diabetes prediction_files/jquery-2.1.1.min.js.download"></script>
<script src="./Diabetes prediction_files/materialize.js.download"></script>
<script src="./Diabetes prediction_files/init.js.download"></script>
</body></html>