-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathresult.html
More file actions
29 lines (28 loc) · 789 Bytes
/
result.html
File metadata and controls
29 lines (28 loc) · 789 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Skin Cancer Prediction Result</title>
<link rel="stylesheet" href="../static/css/result.css">
</head>
<body>
<div class="heading">
<h1>Skin Cancer Prediction</h1>
</div>
<div class="prediction">
<h3>Your Skin Cancer Prediction</h3>
<p>Our analysis suggests that you may have <mark>{{ class_result }}</mark>.</p>
</div>
<div class="ws-cont">
<div class="ws">
<div class="title">
<center><h2>Related Information</h2></center>
<p>Here is some important information about {{ class_result }}:</p>
</div>
<div class="content">
<center>{{ content }}</center>
</div>
</div>
</div>
</body>
</html>