templates/feSecurity/landing.html.twig line 1

Open in your IDE?
  1. {% extends 'base.html.twig' %}
  2. {% block title %}Login{% endblock %}
  3. {% block body %}
  4.     <div class="content-center">
  5.         <div class="col-md-6">
  6.             <div class="login text-center">
  7.                 <h3 class="header text-center">LOGIN TO SEE YOUR TICKETS</h3>
  8.                 <p>Enter the email address you used to purchase your tickets.
  9.                     <br>We will send a secure code to this email address
  10.                     <br>Enter the code on the next screen</p>
  11.                 {{ form_start(form) }}
  12.                 {{ form_row(form.email) }}
  13.                 <button class="btn btn-primary">Continue</button>
  14.                 {{ form_end(form) }}
  15.                 <hr>
  16.                 <form method="post" action="{{ path('feapp_login_anonymously') }}" >
  17.                     <input type="hidden" name="_method" value="POST">
  18.                     <input type="hidden" name="_token" value="{{ csrf_token('anonymous' ) }}">
  19.                     <button class="btn btn-secondary " >I do not have tickets yet</button>
  20.                 </form>
  21.             </div>
  22.         </div>
  23.     </div>
  24. {% endblock %}