-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathReport.html
More file actions
57 lines (54 loc) · 1.63 KB
/
Report.html
File metadata and controls
57 lines (54 loc) · 1.63 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Disease Report</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet">
<style>
body {
background: linear-gradient(135deg, red, orange, yellow, green, blue, indigo, violet);
color: white;
font-family: 'Arial', sans-serif;
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
padding: 40px;
}
.card {
background-color: white;
color: black;
padding: 30px;
border-radius: 15px;
max-width: 600px;
width: 100%;
box-shadow: 0 0 20px rgba(0,0,0,0.4);
}
h2 {
background: linear-gradient(to right, red, orange, yellow, green, blue, indigo, violet);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
font-weight: bold;
}
ul {
list-style: disc;
padding-left: 20px;
}
</style>
</head>
<body>
<div class="card">
<h2 class="text-center">Liver Diagnosis Report</h2>
<p><strong>Detected Liver Disease:</strong> {{ disease }}</p>
<h5>Treatment Recommendations:</h5>
<ul>
{% for tip in tips %}
<li>{{ tip }}</li>
{% endfor %}
</ul>
<div class="text-center mt-4">
<a href="/dashboard" class="btn btn-success">Back to Dashboard</a>
</div>
</div>
</body>
</html>