templates/front/form/evolution.html.twig line 1

Open in your IDE?
  1. {% extends 'base.html.twig' %}
  2. {% block title %}Formulaire - Demande d'évolution{% endblock %}
  3. {% block body %}
  4.   <main class="container" style="max-width: 800px;">
  5.     <header class="p-3 text-bg-dark">
  6.       <div class="container">
  7.         <div class="d-flex flex-wrap align-items-center justify-content-center">
  8.           <a href="https://hoplie.com" class="d-flex align-items-center mb-2 mb-lg-0 text-white text-decoration-none">
  9.             <img src="https://www.hoplie.com/media/images/header/logo.png">
  10.           </a>
  11.         </div>
  12.       </div>
  13.     </header>
  14.   
  15.     <div class="py-5 text-center">
  16.       <h1>Formulaire - Demande d'évolution</h1>
  17.       <p class="alert alert-info">Les demandes d'évolution <span class="fw-bold">concèrnent les modifications liées à une fonctionnalité déjà existante sur votre site, la réalisation d'un nouveau projet ou la refonte de votre site</span>. Pour toutes demandes de support liées à un bug ou à la maintenance de votre site, merci de remplir <a class="text-link" href="{{ path('app_form_support_new') }}">le formulaire de support</a>.</p>
  18.     </div>
  19.   
  20.     <div class="row g-5">
  21.       <div class="col">
  22.         {{ form_start(form,{'attr': {'class': 'needs-validation'}}) }}
  23.           <div class="form-section">
  24.             <h2>Informations client</h2>
  25.             <div class="row g-3 p-3">
  26.               <div class="col-sm-6">
  27.                 {{ form_row(form.customer_information.company) }}
  28.               </div>
  29.               <div class="col-sm-6">
  30.                 {{ form_row(form.customer_information.name) }}
  31.               </div>
  32.               <div class="col-12">
  33.                 {{ form_row(form.customer_information.email) }}
  34.               </div>
  35.             </div>
  36.           </div>
  37.   
  38.           <div class="form-section">
  39.             <h2>Votre besoin</h2>
  40.             <div class="row g-3 p-3">
  41.               <div class="col-12">
  42.                 {{ form_row(form.url) }}
  43.               </div>
  44.               <div class="col-12">
  45.                 {{ form_row(form.description) }}
  46.               </div>
  47.             </div>
  48.           </div>
  49.           <button class="w-100 btn btn-primary btn-lg" type="submit">Envoyer la demande</button>
  50.         {{ form_end(form) }}
  51.       </div>
  52.     </div>
  53.   
  54.     <footer class="my-5 pt-5 text-muted text-center text-small">
  55.       <p class="mb-1">Agence Hoplie</p>
  56.     </footer>
  57.   </main>
  58. {% endblock %}