mirror of
https://git.v0id.ovh/n3wt-innov/n3wt-school.git
synced 2026-04-03 16:51:26 +00:00
67 lines
1.9 KiB
HTML
67 lines
1.9 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Dossier d'inscription refusé</title>
|
|
<style>
|
|
body {
|
|
font-family: Arial, sans-serif;
|
|
line-height: 1.6;
|
|
color: #333;
|
|
}
|
|
.container {
|
|
max-width: 600px;
|
|
margin: 0 auto;
|
|
padding: 20px;
|
|
}
|
|
.header {
|
|
background-color: #f4f4f4;
|
|
padding: 10px;
|
|
text-align: center;
|
|
}
|
|
.content {
|
|
padding: 20px;
|
|
}
|
|
.notes {
|
|
background-color: #f8d7da;
|
|
border: 1px solid #f5c6cb;
|
|
border-radius: 5px;
|
|
padding: 15px;
|
|
margin: 20px 0;
|
|
white-space: pre-line;
|
|
}
|
|
.footer {
|
|
font-size: 12px;
|
|
text-align: center;
|
|
margin-top: 30px;
|
|
color: #777;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<div class="header">
|
|
<img src="{{URL_DJANGO}}static/img/logo_min.svg" alt="Logo N3wt School" class="logo" />
|
|
<h1>Dossier d'inscription refusé</h1>
|
|
</div>
|
|
<div class="content">
|
|
<p>Bonjour,</p>
|
|
<p>Nous avons le regret de vous informer que le dossier d'inscription de <strong>{{ student_name }}</strong> n'a pas été retenu.</p>
|
|
|
|
<div class="notes">
|
|
<strong>Motif(s) :</strong><br>
|
|
{{ notes }}
|
|
</div>
|
|
|
|
<p>Nous vous remercions de l'intérêt que vous avez porté à notre établissement et restons à votre disposition pour tout renseignement complémentaire.</p>
|
|
|
|
<p>Cordialement,</p>
|
|
<p>L'équipe N3wt School</p>
|
|
</div>
|
|
<div class="footer">
|
|
<p>Ce message est généré automatiquement, merci de ne pas y répondre.</p>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|