Spaces:
Sleeping
Sleeping
File size: 1,279 Bytes
f2aa636 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Emotion Detection Result</title>
<style>
body {
font-family: Arial, sans-serif;
text-align: center;
background-color: #f0f0f0;
padding: 50px;
}
h1 {
color: #333;
}
img {
max-width: 300px;
height: auto;
border: 2px solid #333;
margin-top: 20px;
}
.result {
margin-top: 20px;
font-size: 24px;
font-weight: bold;
color: #333;
}
.back-button {
display: inline-block;
margin-top: 20px;
padding: 10px 20px;
background-color: #4CAF50;
color: white;
text-decoration: none;
border-radius: 5px;
}
</style>
</head>
<body>
<h1>Emotion Detection Result</h1>
<div class="result">
<p>Predicted Emotion: <strong>{{ emotion }}</strong></p>
</div>
<div>
<img src="{{ image_file }}" alt="Uploaded Image">
</div>
<a href="/" class="back-button">Try Again</a>
</body>
</html>
|