Spaces:
Sleeping
Sleeping
File size: 639 Bytes
f746ccc 3c16e32 f746ccc 3c16e32 f746ccc |
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 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Reward Application</title>
<style>
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background-color: #f7f7f7;
}
.message-container {
padding: 20px;
border: 1px solid #ccc;
background-color: white;
text-align: center;
}
</style>
</head>
<body>
<div class="message-container">
<h2>{{ message }}</h2>
<a href="/">Go to Login Page</a>
</div>
</body>
</html>
|