78 lines
1.9 KiB
HTML
78 lines
1.9 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Authorization Successful</title>
|
|
<style>
|
|
/* General reset and basic styles */
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
body {
|
|
font-family: 'Arial', sans-serif;
|
|
background-color: #f4f7fc; /* Light grayish-blue */
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
height: 100vh;
|
|
padding: 20px;
|
|
}
|
|
|
|
.message-container {
|
|
background-color: #fff; /* White background */
|
|
border-radius: 16px;
|
|
padding: 35px;
|
|
max-width: 400px;
|
|
text-align: center;
|
|
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
|
|
color: #333; /* Dark text color */
|
|
}
|
|
|
|
h1 {
|
|
font-size: 24px;
|
|
color: #4CAF50; /* Green color for success */
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
p {
|
|
font-size: 16px;
|
|
color: #666; /* Light gray text */
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.icon {
|
|
font-size: 48px;
|
|
color: #4CAF50; /* Same green as the heading */
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
/* Responsive styles */
|
|
@media (max-width: 600px) {
|
|
.message-container {
|
|
padding: 20px;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 20px;
|
|
}
|
|
|
|
p {
|
|
font-size: 14px;
|
|
}
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<div class="message-container">
|
|
<div class="icon">✔</div> <!-- Checkmark icon -->
|
|
<h1>Authorization Successful</h1>
|
|
<p>We have received authorization from your {{ mail_client }} account. You can close this tab at any time.</p>
|
|
</div>
|
|
|
|
</body>
|
|
</html>
|