mirror of
https://git.v0id.ovh/n3wt-innov/n3wt-school.git
synced 2026-01-29 07:53:23 +00:00
121 lines
3.7 KiB
HTML
121 lines
3.7 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="fr">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Relance - Dossier d'inscription</title>
|
|
<style>
|
|
body {
|
|
font-family: Arial, sans-serif;
|
|
line-height: 1.6;
|
|
color: #333;
|
|
margin: 0;
|
|
padding: 20px;
|
|
background-color: #f4f4f4;
|
|
}
|
|
.container {
|
|
max-width: 600px;
|
|
margin: 0 auto;
|
|
background: white;
|
|
padding: 30px;
|
|
border-radius: 10px;
|
|
box-shadow: 0 0 10px rgba(0,0,0,0.1);
|
|
}
|
|
.header {
|
|
text-align: center;
|
|
border-bottom: 3px solid #007bff;
|
|
padding-bottom: 20px;
|
|
margin-bottom: 30px;
|
|
}
|
|
.header h1 {
|
|
color: #007bff;
|
|
margin: 0;
|
|
}
|
|
.alert {
|
|
background-color: #fff3cd;
|
|
border: 1px solid #ffeaa7;
|
|
border-radius: 5px;
|
|
padding: 15px;
|
|
margin: 20px 0;
|
|
}
|
|
.alert-icon {
|
|
font-size: 20px;
|
|
margin-right: 10px;
|
|
}
|
|
.content {
|
|
margin: 20px 0;
|
|
}
|
|
.student-info {
|
|
background-color: #f8f9fa;
|
|
border-left: 4px solid #007bff;
|
|
padding: 15px;
|
|
margin: 20px 0;
|
|
}
|
|
.cta-button {
|
|
display: inline-block;
|
|
background-color: #007bff;
|
|
color: white;
|
|
padding: 12px 25px;
|
|
text-decoration: none;
|
|
border-radius: 5px;
|
|
margin: 20px 0;
|
|
}
|
|
.footer {
|
|
margin-top: 30px;
|
|
padding-top: 20px;
|
|
border-top: 1px solid #dee2e6;
|
|
font-size: 14px;
|
|
color: #6c757d;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<div class="header">
|
|
<h1>{{ establishment_name }}</h1>
|
|
<p>Relance - Dossier d'inscription</p>
|
|
</div>
|
|
|
|
<div class="alert">
|
|
<span class="alert-icon">⚠️</span>
|
|
<strong>Attention :</strong> Votre dossier d'inscription nécessite votre attention
|
|
</div>
|
|
|
|
<div class="content">
|
|
<p>Bonjour,</p>
|
|
|
|
<div class="student-info">
|
|
<h3>Dossier d'inscription de : <strong>{{ student_name }}</strong></h3>
|
|
<p>En attente depuis le : <strong>{{ deadline_date }}</strong></p>
|
|
</div>
|
|
|
|
<p>Nous vous informons que le dossier d'inscription mentionné ci-dessus est en attente de finalisation depuis plus de {{ deadline_date }}.</p>
|
|
|
|
<p><strong>Action requise :</strong></p>
|
|
<ul>
|
|
<li>Connectez-vous à votre espace personnel</li>
|
|
<li>Vérifiez les documents manquants</li>
|
|
<li>Complétez et signez les formulaires en attente</li>
|
|
</ul>
|
|
|
|
<div style="text-align: center;">
|
|
<a href="{{ base_url }}" class="cta-button">Accéder à mon espace</a>
|
|
</div>
|
|
|
|
<p>Si vous rencontrez des difficultés ou avez des questions concernant ce dossier, n'hésitez pas à nous contacter.</p>
|
|
</div>
|
|
|
|
<div class="footer">
|
|
<p>Cordialement,<br>
|
|
L'équipe {{ establishment_name }}</p>
|
|
|
|
<hr style="margin: 20px 0;">
|
|
|
|
<p style="font-size: 12px;">
|
|
Cet email a été envoyé automatiquement. Si vous pensez avoir reçu ce message par erreur,
|
|
veuillez contacter l'établissement directement.
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html> |