| <!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>
|
|
|