We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a0191c4 commit 6f7a76dCopy full SHA for 6f7a76d
app/templates/results.html
@@ -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