templates/documents/annexes/pouvoir_koah.html.twig line 1

Open in your IDE?
  1. <!doctype html>
  2. <html lang="fr">
  3. <head>
  4.     <meta charset="utf-8">
  5.     <title>Procuration dépôt de dossier par KOAH</title>
  6.     <style>
  7.         body {
  8.             font-size: 18px;
  9.             font-family: "Open Sans", Verdana, SansSerif;
  10.         }
  11.         h1 {
  12.             font-size: 110%;
  13.             margin: 2% 0;
  14.             line-height: 2;
  15.             font-family: Serif;
  16.         }
  17.         h2 {
  18.             font-size: 105%;
  19.             margin: 2% 0;
  20.             line-height: 1.8;
  21.             font-family: Serif;
  22.         }
  23.         h3 {
  24.             font-size: 100%;
  25.             margin: 1% 0;
  26.             line-height: 1.5;
  27.             font-family: Serif;
  28.         }
  29.         .center {
  30.             text-align: center;
  31.         }
  32.         .underline {
  33.             border-bottom: 1px solid;
  34.         }
  35.         .container {
  36.             margin: auto;
  37.             text-align: justify;
  38.         }
  39.     </style>
  40. </head>
  41. <body>
  42. <div class="container">
  43.     <h1 class="center">
  44.         {{ organization.legalName|upper }}
  45.         <br/>
  46.         <br/>
  47.         <em>{{ organization.legalStatus|upper }}
  48.             <br/>
  49.             CAPITAL: {{ organization.shareCapital }} EUROS
  50.             <br/>
  51.             SIÈGE SOCIAL:
  52.             {% if organization.address %}{{ organization.address.fullAddress }}{% endif %}
  53.             <br/>
  54.             PROCURATION
  55.         </em>
  56.     </h1>
  57.     <br>
  58.     <p>
  59.         Je soussigné
  60.         {% if physicalLegalRepresentativeLoop is defined %}
  61.             <strong>
  62.                 {{ physicalLegalRepresentativeLoop[0].person.honorificPrefix|readable_enum('GenderTypeEnum')|trans }}
  63.                 {{ physicalLegalRepresentativeLoop[0].person.familyName|upper }} {{ physicalLegalRepresentativeLoop[0].person.givenName }}
  64.                 ,
  65.             </strong>
  66.             <br>
  67.             <br>
  68.             Demeurant
  69.             {% if physicalLegalRepresentativeLoop[0].person.address %}
  70.                 {{ physicalLegalRepresentativeLoop[0].person.address.fullAddress }}
  71.             {% endif %}
  72.             <br>
  73.             <br>
  74.             Agissant en qualité
  75.             de {{ physicalLegalRepresentativeLoop[0].quality|readable_enum('LegalRepresentativeQualityTypeEnum')|trans }}
  76.             de la société
  77.             {% if physicalLegalRepresentativeLoop[1] is defined %}
  78.                 {{ physicalLegalRepresentativeLoop[1].person.legalName }}, {{ physicalLegalRepresentativeLoop[1].person.legalStatus }} au capital de
  79.                 {{ (physicalLegalRepresentativeLoop[1].shareCapital * 100)|currencyText('EUR') }},
  80.                 sis {% if physicalLegalRepresentativeLoop[1].person.address %}{{ physicalLegalRepresentativeLoop[1].person.address.fullAddress }}{% endif %},
  81.                 immatriculée au RCS de {{ physicalLegalRepresentativeLoop[1].person.registrationCity }} sous le numéro
  82.                 {{ physicalLegalRepresentativeLoop[1].person.SIRET }},
  83.                 elle-même {{ physicalLegalRepresentativeLoop[1].quality|readable_enum('LegalRepresentativeQualityTypeEnum')|trans }} de la société
  84.                 {{ organization.legalName }}
  85.             {% else %}
  86.                 {{ organization.legalName }}
  87.             {% endif %}
  88.         {% endif %}
  89.         <br>
  90.         <br>
  91.         Donne par les présentes pouvoir à la SARL KOAH, immatriculée au RCS de Paris sous le numéro 797 978 996, sis 10
  92.         rue de Penthièvre 75008 PARIS, de pour moi et en mon nom faire au Tribunal de commerce tous dépôts pour
  93.         l'immatriculation concernant ladite Société.
  94.         <br>
  95.         <br>
  96.         En conséquence, faire toutes déclarations et démarches, produire toutes pièces justificatives, effectuer tout
  97.         dépôt de pièces, signer tous documents, requêtes et documents utiles, élire domicile, substituer en totalité ou
  98.         en partie, et en général faire tout ce qui sera nécessaire.
  99.         <br>
  100.         <br>
  101.         L'exécution de ce mandat vaudra décharge au mandataire.
  102.     </p>
  103.     <p>
  104.         Fait à {% if organization.address %}{{ organization.address.addressLocality }}{% endif %}
  105.         <br>
  106.         <br>
  107.         Le {{ "now"|format_date('long', locale='fr') }}
  108.         <br>
  109.         <br>
  110.         {% if physicalLegalRepresentativeLoop is defined %}
  111.             <strong>
  112.                 {% if physicalLegalRepresentativeLoop[0].person.type == 'PHYSICAL' %}
  113.                     {{ physicalLegalRepresentativeLoop[0].person.honorificPrefix|readable_enum('GenderTypeEnum')|trans }}
  114.                     {{ physicalLegalRepresentativeLoop[0].person.familyName|upper }} {{ physicalLegalRepresentativeLoop[0].person.givenName }}
  115.                 {% else %}
  116.                     La société {{ physicalLegalRepresentativeLoop[0].person.legalName|upper }} {{ physicalLegalRepresentativeLoop[0].person.legalStatus }}
  117.                 {% endif %}
  118.             </strong>
  119.         {% endif %}
  120.     </p>
  121. </div>
  122. </body>
  123. </html>