mirror of
https://gitlab2.federez.net/re2o/re2o
synced 2025-03-04 23:09:24 +00:00
130 lines
3.7 KiB
HTML
Executable file
130 lines
3.7 KiB
HTML
Executable file
<!DOCTYPE html>
|
|
<!--
|
|
Modified from the Simple HTML Invoice Template
|
|
at https://github.com/sparksuite/simple-html-invoice-template
|
|
|
|
Original license:
|
|
|
|
Copyright (c) 2021 Sparksuite
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
of this software and associated documentation files (the "Software"), to deal
|
|
in the Software without restriction, including without limitation the rights
|
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
copies of the Software, and to permit persons to whom the Software is
|
|
furnished to do so, subject to the following conditions:
|
|
|
|
The above copyright notice and this permission notice shall be included in all
|
|
copies or substantial portions of the Software.
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
SOFTWARE.
|
|
-->
|
|
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<title>Reçu d'adhésion {{asso_name|safe}}</title>
|
|
|
|
<style>
|
|
.invoice-box {
|
|
padding: 30px;
|
|
font-size: 16px;
|
|
line-height: 24px;
|
|
font-family: 'Helvetica Neue', 'Helvetica', Helvetica, Arial, sans-serif;
|
|
color: #333;
|
|
}
|
|
|
|
hr {
|
|
border: 1px solid #eee;
|
|
}
|
|
|
|
p {
|
|
padding: 0;
|
|
text-align: justify;
|
|
}
|
|
|
|
.intro {
|
|
padding-top: 20px;
|
|
}
|
|
|
|
table {
|
|
padding: 0;
|
|
width: 100%;
|
|
line-height: inherit;
|
|
text-align: left;
|
|
}
|
|
|
|
table td {
|
|
width: auto;
|
|
padding: 0;
|
|
vertical-align: top;
|
|
text-align: left;
|
|
}
|
|
|
|
.title {
|
|
padding: 0;
|
|
text-align: left;
|
|
font-size: 32px;
|
|
}
|
|
|
|
table tr .heading {
|
|
padding-right: 5px;
|
|
font-weight: bold;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<div class="invoice-box">
|
|
<h1 class="title">Reçu d'adhésion {{asso_name|safe}}</h1>
|
|
<hr/>
|
|
|
|
<p class="intro">
|
|
Je sousigné {{pres_name|safe}} déclare par la présente avoir reçu le bulletin d'adhésion de :
|
|
</p>
|
|
|
|
<table>
|
|
<tr>
|
|
<td class="heading" width="100px">Prénom :</td>
|
|
<td>{{firstname|safe}}</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td class="heading">Nom :</td>
|
|
<td>{{lastname|safe}}</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td class="heading">Mail :</td>
|
|
<td>{{email|safe}}</td>
|
|
</tr>
|
|
</table>
|
|
|
|
<p>
|
|
ainsi que sa cotisation.<br/>
|
|
|
|
<br/>
|
|
|
|
Le postulant déclare reconnaître l'objet de l'association et en a accepté les statuts ainsi que le règlement intérieur qui sont mis à sa disposition dans les locaux de l'association. L'adhésion du membre sus-nommé est ainsi validée. Ce reçu confirme la qualité de membre du postulant, et ouvre droit à la participation à l'assemblée générale de l'association jusqu'au {{date_end|date:"d F Y"}}.<br/>
|
|
|
|
<br/>
|
|
|
|
Validé électroniquement par {{pres_name|safe}} le {{date_begin|date:"d/m/Y"}}.<br/>
|
|
</p>
|
|
|
|
<br/>
|
|
<hr/>
|
|
|
|
<p>
|
|
Les informations recueillies sont nécessaires pour votre adhésion. Conformément à la loi "Informatique et Libertés" du 6 janvier 1978, vous disposez d'un droit d'accès et de rectification aux données personnelles vous concernant. Pour l'exercer, adressez-vous au secrétariat de l'association.
|
|
</p>
|
|
|
|
</div>
|
|
</body>
|
|
</html>
|