-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsuppression.html
More file actions
119 lines (112 loc) · 3.61 KB
/
Copy pathsuppression.html
File metadata and controls
119 lines (112 loc) · 3.61 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Vous avez été retiré(e) d'un groupe - Annuaire des Entreprises</title>
<style>
body {
font-family: Arial, sans-serif;
line-height: 1.6;
color: #161616;
background: #f6f6f6;
max-width: 600px;
margin: 0 auto;
padding: 20px;
}
h1 {
margin: 0;
color: #000091;
font-size: 24px;
line-height: 1.3;
}
p {
margin: 16px 0;
}
.content {
background: #fff;
border: 1px solid #ddd;
border-top: 6px solid #000091;
border-radius: 6px;
overflow: hidden;
}
.header {
padding: 28px 32px 20px;
background: #f9f8f6;
border-bottom: 1px solid #e5e5e5;
}
.logo {
display: block;
width: 190px;
max-width: 100%;
height: auto;
margin: 0 0 18px;
}
.service-name {
margin: 0 0 8px;
color: #666;
font-size: 13px;
font-weight: bold;
letter-spacing: 0.04em;
text-transform: uppercase;
}
.body {
padding: 24px 32px 28px;
}
.notice {
padding: 14px 16px;
background: #f6f6f6;
border-left: 4px solid #000091;
}
.group-name {
font-weight: bold;
color: #000091;
}
.button {
display: inline-block;
background: #000091;
color: #fff;
padding: 12px 24px;
text-decoration: none;
border-radius: 3px;
margin: 20px 0;
font-weight: bold;
}
.footer {
padding: 18px 32px 24px;
font-size: 13px;
color: #666;
background: #f9f8f6;
border-top: 1px solid #e5e5e5;
}
a {
color: #000091;
}
</style>
</head>
<body>
<div class="content">
<div class="header">
{% if logo_ade_src %}
<img class="logo" src="{{ logo_ade_src }}" width="190" alt="Annuaire des Entreprises">
{% else %}
<p class="service-name">Annuaire des Entreprises</p>
{% endif %}
<h1>Vous avez été retiré(e) d'un groupe</h1>
</div>
<div class="body">
<p>Bonjour,</p>
<p>Vous recevez ce message dans le cadre de la gestion des groupes de l'<a href="https://annuaire-entreprises.data.gouv.fr/">Annuaire des Entreprises</a>.</p>
<div class="notice">
Vous avez été retiré(e) du groupe <span class="group-name">{{ group_name }}</span>.
</div>
<p>Votre accès aux données associées à ce groupe sur l'espace agent public de l'Annuaire des Entreprises a donc été mis à jour.</p>
<p><a class="button" href="https://annuaire-entreprises.data.gouv.fr/compte/mes-groupes" style="display: inline-block; background: #000091; color: #fff; padding: 12px 24px; text-decoration: none; border-radius: 3px; margin: 20px 0; font-weight: bold;"><span style="color: #fff;">Accéder à l'Annuaire des Entreprises</span></a></p>
<p>Si vous pensez qu'il s'agit d'une erreur, rapprochez-vous de la personne qui administre votre groupe{% if group_admin_email %} : <a href="mailto:{{ group_admin_email }}">{{ group_admin_email }}</a>{% endif %}.</p>
</div>
<div class="footer">
Cordialement,<br>
L'équipe Annuaire des Entreprises
</div>
</div>
</body>
</html>