templates/inscription/inscription.html.twig line 1

Open in your IDE?
  1. {% extends 'base_no_menu.html.twig' %}
  2. {% block title "chovie gospel" %}
  3. {% block body %}
  4.     <div class="row">
  5.         <div class="col-lg-3"></div>
  6.         <div class="col-lg-6 " >
  7.             <div class="img-thumbnail p-3">
  8.                 {{ include('inscription/page/input_seek.html.twig') }}
  9.             </div>
  10.             <div class="d-flex mt-2">
  11.                 <div class="p-2 text-white flex-fill text-right" style="font-size: 25pt;">
  12.                                <span class="badge bg-info">
  13.                                    <span class="glyphicon glyphicon-facetime-video"></span>
  14.                                </span>
  15.                 </div>
  16.                 <div class="p-2 mt-1 flex-fill">
  17.                     Tous dans chovie Pour Honnorer <b size="20">Jésus Christ </b><br>Le Grand Seigneur
  18.                 </div>
  19.             </div>
  20.             <div class=" spaceNewForm mt-2">
  21.                 <div class="font-weight-bold text-info fz">Créer votre compte chovie</div>
  22.                 <div class="text-info mb-3" style="font-size: 10pt">Deux types de compte [ Parc ou Signature ] <a title="aide moi" class="float-right mr-3 font-weight-bold" href="{{ path('apropos.index') }}">???</a></div>
  23.                 {{ form_start(formInscription,{'action':'/inscription'}) }}
  24.                 <div style="display: none">
  25.                     {{ form_row(formInscription.clan) }}
  26.                     {{ form_row(formInscription.eglise) }}
  27.                     {{ form_row(formInscription.flag,{'attr': { 'value':'1'}}) }}
  28.                     {{ form_row(formInscription.codeValidation,{'attr':{'value': '5555' }}) }}
  29.                     {{ form_row(formInscription.ConfirCodeValidation,{'attr':{'value': '5555' }}) }}
  30.                 </div>
  31.                 {{ form_rest(formInscription) }}
  32.                 <div class="text-center">
  33.                     <button type="submit" class="btn btn-sm overlay-unique btn-info font-weight-bold mb-5">
  34.                         <span class="badge badge-dark"> Valider </span>
  35.                     </button>
  36.                 </div>
  37.                 {{ form_end(formInscription) }}
  38.             </div>
  39.         </div>
  40.         <div class="col-lg-3"></div>
  41.     </div>
  42.     <!-- /row -->
  43. {% endblock %}