testing_1 / templates /rewards_below.html
Yaswanth56's picture
Update templates/rewards_below.html
3c16e32 verified
raw
history blame
639 Bytes
<!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>