templates/contact_us.html.twig line 1

Open in your IDE?
  1. {% extends 'right_wide.html.twig' %}
  2. {% block title %}Planet Fitness Group{% endblock %}
  3. {% block stylesheets %}
  4.     <link rel="stylesheet" href="{{ asset('css/contact-us.css') }}" />
  5. {% endblock %}
  6. {% block rightHeaderH1 %}{% endblock %}
  7. {% block body %}
  8.     <div class="container-perso">
  9.         <h1>{% trans %}Contactez-nous{% endtrans %}</h1>
  10.         <div class="bg-white mb-5 p-5 radius-2 shadow-card">
  11.             <form method="post" id="contact-form">
  12.                 <div class="form-group">
  13.                     <label for="inputEmail" class="login-label">{% trans %}Adresse email{% endtrans %}</label>
  14.                     <input type="email" name="email" placeholder="email" id="inputEmail" class="form-control login-input" required autofocus>
  15.                 </div>
  16.                 <div class="form-group">
  17.                     <label for="motive" class="login-label">{% trans %}Objet du message{% endtrans %}</label>
  18.                     <select name="motive" id="motive" class="form-control form-control-select">
  19.                         {% for motive in motives %}
  20.                             <option value="{{ motive }}">{{ motive | trans }}</option>
  21.                         {% endfor %}
  22.                     </select>
  23.                 </div>
  24.                 <div class="form-group">
  25.                     <label for="inputMailMessage" class="login-label">{% trans %}Message{% endtrans %}</label>
  26.                     <textarea rows="4" maxlength="500" name="mailMessage" id="inputMailMessage" class="form-control login-input" required></textarea>
  27.                 </div>
  28.                 <div class="g-recaptcha mb-3" data-sitekey="6LdpsAYTAAAAAFf1OnOtaQw7U28ToK634HvLVxdQ" data-callback="enableBtn"></div>
  29.                 <button class="btn btn-primary" type="submit" name="submitContact" id="submit_details" disabled>
  30.                     {% trans %}Envoyer{% endtrans %}
  31.                 </button>
  32.             </form>
  33.         </div>
  34.     </div>
  35. {% endblock %}
  36. {% block javascripts %}
  37.     <script src="{{ asset('js/contact_us.js') }}" ></script>
  38. {% endblock %}