augmentation taille signature : ticket 4d869aca12
FossilOrigin-Name: 1e88fbf5da60f5bf88b1690fed90f728810ead71d655e357a0c7706769e77d00
This commit is contained in:
parent
acc18fc832
commit
3f077d0349
|
@ -58,18 +58,19 @@ echo <<<FDD
|
|||
<p class="important">Reçu numéro {$annee_recu}/{$numero}</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="cartouche" id="beneficiaire">
|
||||
<h3 class="rubrique">Bénéficiaire des versements</h3>
|
||||
<p class="important">Association « {$this->nomAsso} »</p>
|
||||
<p class="important" >{$this->adresseAsso}</p>
|
||||
<p><span class="titre">Objet : </span><span class="libelle">{$this->objetAsso}</span></p>
|
||||
<p class="important">Association « {$this->nomAsso} »<br />
|
||||
{$this->adresseAsso}<br />
|
||||
<span class="titre">Objet : </span><span class="libelle">{$this->objetAsso}</span></p>
|
||||
</div>
|
||||
|
||||
<div class="cartouche" id="donateur">
|
||||
<h3 class="rubrique">Donateur</h3>
|
||||
<p>{$nom}</p>
|
||||
<p>{$adresse}</p>
|
||||
<p>{$code_postal} {$ville}</p>
|
||||
<p>{$nom}<br />
|
||||
{$adresse}<br />
|
||||
{$code_postal} {$ville}</p>
|
||||
</div>
|
||||
|
||||
<div class="cartouche" id="versements">
|
||||
|
@ -118,10 +119,13 @@ FDD;
|
|||
$date = date("j/m/Y");
|
||||
echo <<<FDD
|
||||
<div class="cartouche" id="final">
|
||||
<p>{$this->villeAsso} le {$date}</p>
|
||||
<img id="signature" src="$this->signature" />
|
||||
<p id="nom">$this->nomResponsable</p>
|
||||
<p id="fonction">$this->fonctionResponsable</p>
|
||||
<p>{$this->villeAsso} le {$date}<br />
|
||||
<img id="signature" src="$this->signature" />
|
||||
</p>
|
||||
<div>
|
||||
<span id="nom">$this->nomResponsable</span><br />
|
||||
<span id="fonction">$this->fonctionResponsable</span>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
@ -168,6 +172,7 @@ echo <<<FDD
|
|||
font-family: Serif;
|
||||
font-size: 11pt;
|
||||
background-color: white;
|
||||
width : 19cm;
|
||||
}
|
||||
#logoCerfa
|
||||
{
|
||||
|
@ -208,38 +213,32 @@ echo <<<FDD
|
|||
{
|
||||
text-align : right;
|
||||
}
|
||||
#final
|
||||
#versements
|
||||
{
|
||||
height : 5cm;
|
||||
border-top: 1px solid rgb(0, 0, 128);
|
||||
border-bottom: 1px solid rgb(0, 0, 128);
|
||||
}
|
||||
.rubrique
|
||||
{
|
||||
background-color : rgb(200, 200, 250);
|
||||
padding : 2mm;
|
||||
}
|
||||
.cartouche
|
||||
{
|
||||
margin : 2mm auto;
|
||||
padding : 0 2mm;
|
||||
border : 1px solid rgb(0, 0, 128);
|
||||
border-radius : 8px;
|
||||
}
|
||||
.titre, .important
|
||||
{
|
||||
font-weight:bold;
|
||||
}
|
||||
.libelle
|
||||
{
|
||||
font-weight: normal;
|
||||
}
|
||||
#signature
|
||||
{
|
||||
display: block;
|
||||
max-width : 7cm;
|
||||
max-height : 2cm;
|
||||
max-height : 4cm;
|
||||
margin: 0 auto;
|
||||
padding-bottom : 2mm;
|
||||
}
|
||||
#fonction, #nom
|
||||
{
|
||||
text-align : center;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
|
|
Loading…
Reference in New Issue