File size: 2,107 Bytes
fa53be0 |
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 |
<!DOCTYPE html>
<html>
<head>
<title>Experiment Completed</title>
<style>
body {
font-family: 'Roboto', sans-serif;
background: url('/static/images/background.jpg') no-repeat center center fixed;
background-size: cover;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
}
.container {
text-align: center;
background-color: #ffffff; /* Solid background color */
padding: 60px;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
width: 60%;
}
h1 {
color: #000000; /* Black text color */
font-size: 48px; /* Larger text */
margin-bottom: 30px;
}
p {
color: #000000; /* Black text color */
font-size: 24px; /* Larger text */
margin-bottom: 30px;
}
.thank-you {
color: #4CAF50;
font-size: 24px; /* Larger text */
margin-top: 20px;
}
.button-container {
margin-top: 30px;
}
button {
background-color: #4CAF50;
color: white;
padding: 15px 30px;
border: none;
border-radius: 5px;
cursor: pointer;
font-size: 24px; /* Larger text */
transition: background-color 0.3s ease;
}
button:hover {
background-color: #45a049;
}
</style>
</head>
<body>
<div class="container">
<h1>Thank you! ๐๐๐</h1>
<p>Experiment completed! Your responses have been recorded.</p>
<p>Accuracy: {{ accuracy }}%</p>
<p>Accepted: {{ accept_percentage }}%</p>
<p>Rejected: {{ reject_percentage }}%</p>
<div class="button-container">
<a href="/" style="text-decoration: none;">
<button>Back to Start Page</button>
</a>
</div>
</div>
</body>
</html>
|