templates/en/patient-contact.html.twig line 1

Open in your IDE?
  1. {% extends 'base.html.twig' %}
  2. {% block title %}Contact the CoaguChek Roche Care Centre{% endblock %}
  3. {% block description %}Get in touch with your questions about INR self-testing with a CoaguChek device.{% endblock %}
  4. {% block main %}
  5.     <section class="bg-patient text-white position-relative roche-header">
  6.         <div class="container-fluid">
  7.             <div class="row align-items-center">
  8.                 <div class="col-lg-4 offset-lg-2 py-5 px-0 order-2 order-lg-1">
  9.                     <div class="container">
  10.                         <h1>Get in touch</h1>
  11.                         <p class="mb-0">We are always happy to help.</p>
  12.                     </div>                    
  13.                 </div>
  14.                 <div class="col-lg-6 pe-0 order-1 order-lg-2">
  15.                     <img src="{{ asset('build/images/patient/08-Contact/000-Heroimage_1x.png') }}" srcset="{{ asset('build/images/patient/08-Contact/000-Heroimage_1x.png') }} 1x, {{ asset('build/images/patient/08-Contact/000-Heroimage_2x.png') }} 2x" alt="A woman on the phone reading her drugs instructions" class="w-100" />
  16.                 </div>
  17.             </div>
  18.         </div>
  19.     </section>
  20.     <section class="roche-section__medium">
  21.         <div class="container">
  22.             <div class="row">
  23.                 <div class="col-12 col-lg-7">
  24.                     <h2 class="text-patient">Contact information</h2>
  25.                     <p>The CoaguChek<sup>®</sup> Roche Care Centre is here to answer your questions.</p>
  26.                     <p>Call us toll-free at <a href="tel:+1 (877) 426-2482" class="text-patient fw-bold text-nowrap">+1 (877) 426-2482</a> <br>Monday - Friday between 8am and 5pm (EST).</p>
  27.                     <div class="roche-image roche-image__left">
  28.                         <img class="img-fluid" src="{{ asset('build/images/patient/08-Contact/01-ContactUs_1x.png') }}" srcset="{{ asset('build/images/patient/08-Contact/01-ContactUs_1x.png') }} 1x, {{ asset('build/images/patient/08-Contact/01-ContactUs_2x.png') }} 2x" alt="A grandfather and his granddaughter looking at a tablet">
  29.                     </div>
  30.                 </div>
  31.                 <div class="col-12 col-lg-5 pt-5 pt-lg-0">
  32.                     <h2 class="text-patient">Send a message</h2>
  33.                     {{ form_start(form) }}
  34.                         <p><small>Fields marked with * must be completed.</small></p>
  35.                         {{ form_row(form.subject) }}
  36.                         
  37.                         <div class="row">
  38.                             <div class="col-md-6">{{ form_row(form.firstname) }}</div>
  39.                             <div class="col-md-6">{{ form_row(form.lastname) }}</div>
  40.                         </div>
  41.                         <div class="row">
  42.                             <div class="col-md-6">{{ form_row(form.email) }}</div>
  43.                             <div class="col-md-6">{{ form_row(form.phone) }}</div>
  44.                         </div>    
  45.                         {{ form_row(form.message) }}
  46.                         <p>Roche Diagnostics would like to provide you with relevant news and information on our products and promotions. We would also like to ask you about your experiences and opinion.</p>                    
  47.                         {{ form_rest(form) }}
  48.                         <button class="btn btn-patient text-white">{{ button_label|default('Submit') }}</button>
  49.                     {{ form_end(form) }}
  50.                 </div>
  51.             </div>
  52.         </div>
  53.     </section>
  54.     </div>
  55. {% endblock %}