Files
myep-team/templates/teamer/check/financial_data.html.twig
T

41 lines
1.2 KiB
Twig

{% extends 'teamer/layout.html.twig' %}
{% block title %}Honorardaten{% endblock %}
{% block content %}
{{ form_start(form) }}
<div class="max-w-2xl">
<h1 class="text-2xl font-bold pb-2">
Bankverbindung und Steuer-ID
</h1>
<p class="pb-6">
Damit wir dein Honorar auszahlen können, benötigen wir einmalig deine Steuer-ID und deine
Bankverbindung. Bitte ergänze die folgenden Angaben:
</p>
{% if not form.vars.valid %}
{% embed '_partials/_alert.html.twig' with { 'type': 'warning' } %}
{% block message %}
{% include '_partials/_form_errors.html.twig' with { 'form': form } %}
{% endblock %}
{% endembed %}
{% endif %}
<div class="flex flex-col space-y-4 pb-6">
{{ form_row(form.taxId) }}
{{ form_row(form.iban) }}
{{ form_row(form.bic) }}
{{ form_row(form.bank) }}
{{ form_row(form.holder) }}
</div>
<button type="submit" class="btn">
Speichern
</button>
</div>
{{ form_rest(form) }}
{{ form_end(form) }}
{% endblock %}