59 lines
1.5 KiB
HTML
59 lines
1.5 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Votre compte est activé</title>
|
|
<style>
|
|
body {
|
|
font-family: Arial, sans-serif;
|
|
background-color: #f4f4f4;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
.container {
|
|
max-width: 600px;
|
|
margin: 20px auto;
|
|
background: #ffffff;
|
|
padding: 20px;
|
|
border-radius: 10px;
|
|
box-shadow: 0 2px 5px rgba(0,0,0,0.1);
|
|
text-align: center;
|
|
}
|
|
h2 {
|
|
color: #333;
|
|
}
|
|
p {
|
|
color: #666;
|
|
font-size: 16px;
|
|
}
|
|
.button {
|
|
display: inline-block;
|
|
background: #007BFF;
|
|
color: white;
|
|
padding: 12px 20px;
|
|
text-decoration: none;
|
|
border-radius: 5px;
|
|
font-size: 16px;
|
|
font-weight: bold;
|
|
margin-top: 20px;
|
|
}
|
|
.button:hover {
|
|
background: #0056b3;
|
|
}
|
|
.footer {
|
|
margin-top: 20px;
|
|
font-size: 12px;
|
|
color: #888;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<h2>Félicitations, {{ username }} ! 🎉</h2>
|
|
<p>Votre compte a été activé avec succès.</p>
|
|
<p>Vous pouvez maintenant vous connecter et profiter pleinement de nos services.</p>
|
|
<p class="footer">Si vous avez des questions, n'hésitez pas à nous contacter.</p>
|
|
</div>
|
|
</body>
|
|
</html>
|