[e55501]: / templates / chroresult.html

Download this file

94 lines (82 with data), 2.5 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
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Kidney Disease Prediction Result</title>
<style>
body {
font-family: Arial, sans-serif;
background-image: url('https://www.medicaldevice-network.com/wp-content/uploads/sites/23/2022/08/shutterstock_1936358704.jpg');
background-repeat: no-repeat;
background-size: cover;
background-position: center;
margin: 0;
padding: 0;
}
#header {
background-color: #333;
color: #fff;
padding: 20px;
text-align: center;
}
h1 {
margin: 0;
font-size: 28px;
}
#main {
padding: 50px;
text-align: center;
}
#result {
font-size: 24px;
background-color:aqua;
color: #e60000;
margin-bottom: 30px;
}
ul {
list-style-type: disc;
text-align: left;
margin-bottom: 30px;
padding-left: 20px;
}
li {
margin-bottom: 10px;
}
#homepage-btn {
padding: 10px 20px;
background-color: #333;
color: #fff;
border: none;
border-radius: 5px;
font-size: 16px;
cursor: pointer;
transition: background-color 0.2s;
}
#homepage-btn:hover {
background-color: #555;
}
</style>
</head>
<body>
<div id="header">
<h1>Kidney Disease Prediction Result</h1>
</div>
<div id="main">
<div id="result">
<h2><u> Prediction Result: <span style="color: #e60000;">HIGH</span> chance of Chronic Kidney Disease</u></h2>
</div>
<ul>
<li><b><u>DON'T WORRY! HERE ARE FEW STEPS YOU NEED TO FOLLOW TO MAINTAIN A HEALTHY LIFESTYLE</u></b></li>
<b> <li>Follow a strict renal-friendly diet prescribed by your healthcare provider</li>
<li>Limit salt, protein, and phosphorus intake</li>
<li>Stay hydrated, but be mindful of fluid restrictions if applicable</li>
<li>Take medications as prescribed, including blood pressure and diabetes medications</li>
<li>Monitor blood pressure and blood sugar levels regularly</li>
<li>Exercise regularly and maintain a healthy weight</li>
<li>Avoid smoking and limit alcohol consumption</li></b>
</ul>
<button id="homepage-btn" onclick="window.location.href='/kidney'">Try Different Data</button>
<button id="homepage-btn" onclick="window.location.href='/mainpage'">Go to Homepage</button>
</div>
</body>
</html>