Skip to content

Commit 6f7a76d

Browse files
committed
Create a skeleton results.html
1 parent a0191c4 commit 6f7a76d

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

app/templates/results.html

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<title>PneumoDetect - Result</title>
6+
<link rel="stylesheet" href="{{ url_for('static', filename='css/bootstrap.min.css') }}">
7+
</head>
8+
<body class="container mt-5 text-center">
9+
<h2>Prediction Result:</h2>
10+
<div class="alert alert-info mt-3">
11+
<h3>{{ prediction }}</h3>
12+
</div>
13+
<a href="{{ url_for('home') }}" class="btn btn-secondary">Try Another</a>
14+
</body>
15+
</html>

0 commit comments

Comments
 (0)