82 lines
3.8 KiB
Twig
82 lines
3.8 KiB
Twig
{% extends 'layout.html.twig' %}
|
|
|
|
{% block content %}
|
|
<div class="grid grid-cols-1 md:grid-cols-2 gap-8 px-4 lg:px-8 py-8 lg:py-16">
|
|
<div>
|
|
<h1 class="text-white uppercase pb-4 mb-8 border-b border-primary-bg/40">
|
|
Login<br>MyE&P
|
|
</h1>
|
|
{% include '_partials/_flashes.html.twig' %}
|
|
{% if error %}
|
|
{% include '_partials/_alert.html.twig' with { 'level': 'error', messages: [ error.messageKey|trans(error.messageData, 'security') ] } %}
|
|
{% endif %}
|
|
<div class="pb-4">
|
|
<form action="{{ path('app_login') }}" method="post" {{ stimulus_action('loading', 'show') }}>
|
|
<div class="mb-4">
|
|
<label for="username" class="mb-1 font-semibold text-white">
|
|
E-Mail:
|
|
</label>
|
|
<input type="email"
|
|
id="username"
|
|
name="_username"
|
|
value="{{ last_username }}"
|
|
class="form-field"
|
|
required
|
|
autocomplete="username">
|
|
</div>
|
|
<div class="mb-4">
|
|
<label for="password" class="mb-1 font-semibold text-white">
|
|
Passwort:
|
|
</label>
|
|
<input type="password"
|
|
id="password"
|
|
name="_password"
|
|
class="form-field"
|
|
required
|
|
autocomplete="current-password">
|
|
</div>
|
|
<div class="flex flex-col lg:flex-row space-y-2 lg:space-y-0 lg:space-x-2 mt-4">
|
|
<button type="submit" class="button button--primary">
|
|
Login
|
|
</button>
|
|
</div>
|
|
<input type="hidden" name="_csrf_token" value="{{ csrf_token('authenticate') }}">
|
|
</form>
|
|
</div>
|
|
<div class="flex space-x-2">
|
|
<a href="{{ path('app_reset_password') }}"
|
|
class="text-white underline">
|
|
Passwort vergessen?
|
|
</a>
|
|
<a href="{{ path('app_registration') }}"
|
|
class="text-white underline">
|
|
Jetzt registrieren
|
|
</a>
|
|
</div>
|
|
</div>
|
|
<div>
|
|
<h3 class="mb-2 text-white">
|
|
Neu!
|
|
</h3>
|
|
<p class="mb-4 text-white">
|
|
Melde dich jetzt bei MyEP an und du kannst jederzeit auf deine aktuellen Buchungen zugreifen und
|
|
diese abändern. Egal ob du einen Kurs oder eine Skipasserweiterung hinzufügen/entfernen möchtest,
|
|
oder das vegetarische Essen auswählen willst. Im neuen Portal ist das nun kostenlos bis 7 Tage vor
|
|
Reisebeginn möglich!
|
|
</p>
|
|
<h3 class="mb-2 text-white">
|
|
Noch keine Zugangsdaten?
|
|
</h3>
|
|
<p class="mb-2 text-white">
|
|
Dann gib deine E-Mail ein, mit der Du gebucht hast und klicke auf "Passwort vergessen"! Und wir
|
|
senden dir ein E-Mail mit einem Passwort-Link!
|
|
</p>
|
|
<p class="text-white">
|
|
Ein LogIn ist nur möglich wenn Eure Daten schon durch eine Buchung oder Anfrage bei uns
|
|
angelegt wurden. Wenn Ihr auch Kunde werden möchtet, dann schickt uns Eure Interessen über unser
|
|
<a href="https://www.ep-reisen.de/skireisen/unternehmen/kontakt/kontaktformular/" title="Kontaktformular" class="underline">Kontaktformular</a>.
|
|
</p>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|