{% extends 'base.html.twig' %}
{% block title %}Login{% endblock %}
{% block body %}
<div class="content-center">
<div class="col-md-6">
<div class="login text-center">
<h3 class="header text-center">LOGIN TO SEE YOUR TICKETS</h3>
<p>Enter the email address you used to purchase your tickets.
<br>We will send a secure code to this email address
<br>Enter the code on the next screen</p>
{{ form_start(form) }}
{{ form_row(form.email) }}
<button class="btn btn-primary">Continue</button>
{{ form_end(form) }}
<hr>
<form method="post" action="{{ path('feapp_login_anonymously') }}" >
<input type="hidden" name="_method" value="POST">
<input type="hidden" name="_token" value="{{ csrf_token('anonymous' ) }}">
<button class="btn btn-secondary " >I do not have tickets yet</button>
</form>
</div>
</div>
</div>
{% endblock %}