Gigishot's picture
Upload 23 files
5c9ce3f verified
Raw
History Blame Contribute Delete
835 Bytes
<!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>