<!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>