File size: 4,116 Bytes
fa53be0 66eae26 f7e1b55 66eae26 f7e1b55 66eae26 f7e1b55 66eae26 fa53be0 66eae26 fa53be0 8251e4d 66eae26 68eb98f 66eae26 f7e1b55 66eae26 fa53be0 66eae26 fa53be0 4faaa69 |
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 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 |
<!DOCTYPE html>
<html>
<head>
<title>Experiment Completed</title>
<style>
body {
font-family: 'Roboto', sans-serif;
background: linear-gradient(120deg, #84fab0 0%, #8fd3f4 100%);
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
overflow: hidden;
}
.container {
background-color: rgba(255, 255, 255, 0.9);
border-radius: 20px;
padding: 40px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
text-align: center;
max-width: 600px;
width: 90%;
}
h1 {
color: #2c3e50;
font-size: 36px;
margin-bottom: 30px;
animation: bounce 1s ease;
}
.stats-container {
display: flex;
flex-direction: column;
align-items: center;
margin-bottom: 30px;
}
.stat-card {
background-color: #fff;
border-radius: 15px;
padding: 20px;
margin: 10px;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
width: 80%;
transition: transform 0.3s ease;
}
.prediction-stats {
display: flex;
justify-content: space-between;
width: 80%;
}
.prediction-stat-card {
flex: 1;
margin: 0 5px;
}
.stat-card:hover, .prediction-stat-card:hover {
transform: translateY(-5px);
}
.stat-title {
font-size: 18px;
color: #7f8c8d;
margin-bottom: 10px;
}
.stat-value {
font-size: 28px;
font-weight: bold;
color: #2c3e50;
}
.button-container {
margin-top: 30px;
}
button {
background-color: #3498db;
color: white;
border: none;
padding: 15px 30px;
font-size: 18px;
border-radius: 50px;
cursor: pointer;
transition: background-color 0.3s ease, transform 0.3s ease;
}
button:hover {
background-color: #2980b9;
transform: scale(1.05);
}
@keyframes bounce {
0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
40% {transform: translateY(-30px);}
60% {transform: translateY(-15px);}
}
</style>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap" rel="stylesheet">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/confetti.browser.min.js"></script>
</head>
<body>
<div class="container">
<h1>Thank you!</h1>
<p>You've successfully completed the experiment. Your predictions have been recorded.</p>
<div class="stats-container">
<div class="stat-card">
<div class="stat-title">Your Labeling Accuracy</div>
<div class="stat-value">{{ accuracy }}%</div>
</div>
<div class="prediction-stats">
<div class="stat-card prediction-stat-card">
<div class="stat-title">You Predicted TRUE</div>
<div class="stat-value">{{ true_percentage }}%</div>
</div>
<div class="stat-card prediction-stat-card">
<div class="stat-title">You Predicted FALSE</div>
<div class="stat-value">{{ false_percentage }}%</div>
</div>
</div>
</div>
<div class="button-container">
<a href="/" style="text-decoration: none;">
<button>Back to Start Page</button>
</a>
</div>
</div>
<script>
// Trigger confetti animation
confetti({
particleCount: 100,
spread: 70,
origin: { y: 0.6 }
});
</script>
</body>
</html> |