templates/themesWebsite/cvs/website/customer/depot_CV.html.twig line 1

Open in your IDE?
  1. {% extends 'themesWebsite/blog_cvs/base.html.twig' %}
  2. {% block title %}Déposer mon CV{% endblock title %}
  3. {% block description %}{% endblock description %}
  4. {% block robots %}noindex,nofollow{% endblock robots %}
  5. {% block meta_social %}{{ parent() }}{% endblock meta_social %}
  6. {% block meta %}{{ parent() }}{% endblock meta %}
  7. {% block body %}
  8.     <div class="hero-header bg-light-primary">
  9.         <div class="container">
  10.             <div class="row justify-content-between align-items-center">
  11.                 <div class="col-xl-6 col-lg-6 col-md-12 col-sm-12">
  12.                     <h1 class="mb-4">Déposer mon CV</h1>
  13.                     <p class="fs-5">
  14.                         Avant de débuter, il est indispensable de créer un compte utilisateur. Cela vous permettra de gérer votre CV et d'échanger avec les recruteurs et entreprises. Et c’est totalement gratuit !
  15.                     </p>
  16.                     <p class="fs-5">
  17.                         <strong>Pourquoi un CV anonyme ?</strong>
  18.                     </p>
  19.                     <p class="fs-5">
  20.                         Un CV anonyme présente de nombreux avantages, tant pour les recruteurs que pour les candidats, en contribuant à une démarche de recrutement plus équitable et objective.
  21.                     </p>
  22.                 </div>
  23.                 <div class="col-xl-5 col-lg-5 col-md-12 col-sm-12">
  24.                     <div class="hero-search-wrap">
  25.                         <div class="hero-search-content verticle-space">
  26.                             {{ form_start(form) }}
  27.                             {{ form_errors(form) }}
  28.                             <div class="row">
  29.                                 <div class="col-xl-12 col-lg-12 col-md-12 col-sm-12" style="margin-top:10px;">
  30.                                     <label class="form-label">Adresse mail</label>
  31.                                     {{ form_errors(form.email) }}
  32.                                     {{ form_widget(form.email,{'attr':{'class':'form-control form-control-lg form-control-solid'}}) }}
  33.                                 </div>
  34.                                 <div class="col-xl-12 col-lg-12 col-md-12 col-sm-12" style="margin-top:24px;">
  35.                                     <button type="submit" class="btn btn-primary full-width">Commencer mon CV &nbsp; <i class="fa fa-arrow-right"></i></button>
  36.                                 </div>
  37.                             </div>
  38.                             {{ form_rest(form) }}
  39.                         </div>
  40.                     </div>
  41.                 </div>
  42.             </div>
  43.         </div>
  44.     </div>
  45. {% endblock body %}