Spaces:
Sleeping
Sleeping
<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> | |