18 lines
623 B
HTML
18 lines
623 B
HTML
{{define "content"}}
|
|
<h2>Nouveau message de contact</h2>
|
|
|
|
<table style="width: 100%; border-collapse: collapse; margin-top: 20px;">
|
|
{{range $key, $value := .fields}}
|
|
<tr>
|
|
<td style="padding: 10px; border-bottom: 1px solid #eee; font-weight: bold; vertical-align: top; width: 30%;">{{$key}}</td>
|
|
<td style="padding: 10px; border-bottom: 1px solid #eee;">{{$value}}</td>
|
|
</tr>
|
|
{{end}}
|
|
</table>
|
|
|
|
<hr style="margin-top: 30px; border: none; border-top: 1px solid #ccc;" />
|
|
<p style="font-size: 12px; color: #666;">
|
|
Ce message a été envoyé via le formulaire de contact du site public.
|
|
</p>
|
|
{{end}}
|