-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
49 lines (40 loc) · 1.71 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Kidney Stone Prediction</title>
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="header">
<h1>Kidney Stone Detection</h1>
</div>
<div class="container">
<div class="inputs">
<label for="gravity">Gravity:</label>
<input type="number" id="gravity" name="gravity" value="1.015" min="1.005" max="1.030" step="0.001">
<label for="ph">pH:</label>
<input type="number" id="ph" name="ph" value="6.0" min="4.5" max="8.0" step="0.1">
<label for="osmo">Osmolarity:</label>
<input type="number" id="osmo" name="osmo" value="500" min="50" max="1200" step="10">
<label for="cond">Conductivity:</label>
<input type="number" id="cond" name="cond" value="5" min="1" max="34" step="1">
<label for="urea">Urea:</label>
<input type="number" id="urea" name="urea" value="100" min="70" max="210" step="5">
<label for="calc">Calcium:</label>
<input type="number" id="calc" name="calc" value="10" min="5" max="20" step="1">
</div>
<div class="buttons">
<button id="predictBtn">Predict</button>
<button id="aboutBtn">About</button>
</div>
<div class="result">
<p id="predictionResult">Prediction: No Kidney Stone</p>
<img id="resultImage" src="img/0.jpg" alt="Result Image">
</div>
</div>
<script src="app.js"></script>
</body>
</html>