luulinh90s's picture
add materials
fa53be0
raw
history blame
2.11 kB
<!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>