File size: 665 Bytes
fa53be0 4faaa69 fa53be0 4faaa69 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 |
<!DOCTYPE html>
<html>
<head>
<title>Experiment Completed</title>
<style>
/* ... (keep existing styles) ... */
</style>
</head>
<body>
<div class="container">
<h1>Thank you! ๐๐๐</h1>
<p>Experiment completed! Your predictions have been recorded.</p>
<p>Prediction Accuracy: {{ accuracy }}%</p>
<p>Predicted TRUE: {{ true_percentage }}%</p>
<p>Predicted FALSE: {{ false_percentage }}%</p>
<div class="button-container">
<a href="/" style="text-decoration: none;">
<button>Back to Start Page</button>
</a>
</div>
</div>
</body>
</html> |