File size: 835 Bytes
5c9ce3f | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Prediction Result</title>
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='style.css') }}">
</head>
<body class="result-body">
<div class="container">
<h1 class="glow-heading">🐾 Prediction Result</h1>
<div class="card-glow">
<img src="{{ img_path }}" alt="Uploaded Image" class="preview-img">
<div class="result-info">
<p><strong>Prediction:</strong> <span class="highlight">{{ prediction }}</span></p>
<p><strong>Confidence:</strong> <span class="confidence">{{ confidence }}%</span></p>
</div>
</div>
<a href="/" class="glow-button">🔁 Classify Another Image</a>
</div>
</body>
</html>
|