src/Social/UserBundle/Resources/views/Registration/section_support_homepage.html.twig line 1

Open in your IDE?
  1. <section id="suport">
  2.     <div class="container">
  3.         <div id="suport-inside" class="row">
  4.             <div class="col-sm-4 col-md-4">
  5.                 <div class="panel">
  6.                     <h4><i class="fa fa-fw fa-life-ring" aria-hidden="true"></i>
  7.                         {% trans %}CONCERNS OR QUESTIONS{% endtrans %}
  8.                     </h4>
  9.                     <p>{% trans %}If you have any questions or concerns, please do not hesitate to contact us.{% endtrans %}</p>
  10.                     <a href="{{ path('social_support') }}" class="btn btn-success btn-stroke">
  11.                         {% trans %}Support Area{% endtrans %}
  12.                     </a>
  13.                     </br>
  14.                     <small class="find-support">
  15.                         <i class="glyphicon glyphicon-exclamation-sign"></i>
  16.                         {% trans %}We have a FAQ page when you can search for an answer.{% endtrans %}
  17.                     </small>
  18.                 </div>
  19.             </div>
  20.             <div class="col-sm-8 col-md-8">
  21.                 <div class="panel">
  22.                     <h4><i class="fa fa-fw fa-envelope" aria-hidden="true"></i>
  23.                         {% trans %}NEWSLETTER SIGNUP{% endtrans %}</h4>
  24.                     <p>
  25.                         {% trans %}By subscribing to our mailing list you will always be updated with the latest news from us.{% endtrans %}
  26.                     </p>
  27.                     <form class="form-inline" role="form" id="newsletter-form" action="{{ path('social_user_subscribe_newsletter') }}" method="POST"
  28.                           novalidate="novalidate">
  29.                         <div class="form-group">
  30.                             {{ form_widget(newsletter_form.name) }}
  31.                         </div>
  32.                         <div class="form-group">
  33.                             {{ form_widget(newsletter_form.email) }}
  34.                         </div>
  35.                         {{ form_widget(newsletter_form.value, { value : 'johnny@yahoo.com' }) }}
  36.                         {{ form_rest(newsletter_form) }}
  37.                         <button type="submit" class="btn btn-success">{% trans %}Join Us{% endtrans %}</button>
  38.                     </form>
  39.                     <small>
  40.                         <i class="glyphicon glyphicon-exclamation-sign"></i>
  41.                         {% trans %}We take your privacy extremely seriously.{% endtrans %}
  42.                     </small>
  43.                 </div>
  44.             </div>
  45.         </div>
  46.     </div>
  47. </section>