-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathkidney.html
More file actions
106 lines (104 loc) · 3.73 KB
/
kidney.html
File metadata and controls
106 lines (104 loc) · 3.73 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
94
95
96
97
98
99
100
101
102
103
104
105
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Kidney Function Checker | SuSwastha</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body class="module-page">
<header class="module-header">
<div class="logo">SuSwastha</div>
<nav class="nav-links">
<a href="index.html">Home</a>
<a href="tests.html">Health Tests</a>
<a href="reports.html">Reports</a>
<a href="report-history.html">History</a>
<a href="contact-about.html">Contact</a>
<a href="admin.html">Admin</a>
</nav>
<div class="module-actions">
<a class="btn ghost" href="login.html">Login</a>
<a class="btn primary" href="signup.html">Sign Up</a>
</div>
</header>
<main class="test-main">
<section class="test-info">
<a class="back-link" href="tests.html">← Back to Test Options</a>
<p class="eyebrow">CKD Screening</p>
<h1>Assess kidney health and eGFR trends</h1>
<p>
Capture the major lab indicators for chronic kidney disease and let
SuSwastha flag potential stages with actionable recommendations.
</p>
<img
src="https://plus.unsplash.com/premium_photo-1702598804759-8fb687f774fb?q=80&w=870&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D"
alt="Patient reading kidney health documents"
/>
</section>
<section class="test-form-card">
<h2>Input your values</h2>
<form class="test-form">
<label>Age <input type="number" placeholder="e.g., 58" /></label>
<label>
Blood Pressure (mm Hg)
<input type="number" placeholder="e.g., 130" />
</label>
<label>
Specific Gravity
<input type="number" step="0.01" placeholder="e.g., 1.02" />
</label>
<label>
Albumin
<input type="number" placeholder="e.g., 2" />
</label>
<label>Sugar <input type="number" placeholder="e.g., 0" /></label>
<label>
Blood Glucose Random
<input type="number" placeholder="e.g., 145" />
</label>
<label>
Blood Urea
<input type="number" placeholder="e.g., 45" />
</label>
<label>
Serum Creatinine
<input type="number" step="0.1" placeholder="e.g., 1.4" />
</label>
<label>
Sodium
<input type="number" placeholder="e.g., 138" />
</label>
<label>
Potassium
<input type="number" step="0.1" placeholder="e.g., 4.5" />
</label>
<label>
Hemoglobin
<input type="number" step="0.1" placeholder="e.g., 12.5" />
</label>
<label>
Packed Cell Volume
<input type="number" placeholder="e.g., 40" />
</label>
<label>
White Blood Cell Count
<input type="number" placeholder="e.g., 9800" />
</label>
<label>
Red Blood Cell Count
<input type="number" step="0.01" placeholder="e.g., 4.5" />
</label>
<button type="submit" class="btn primary">Run Prediction</button>
</form>
<div class="output-box">
<h3>Results preview</h3>
<p>Status: Normal Kidney / CKD (Stage)</p>
<p>Estimated eGFR: -- mL/min/1.73m²</p>
<p>Recommendations: Hydration, nephrologist consult, medication review.</p>
</div>
</section>
</main>
<script src="script.js"></script>
</body>
</html>