Files
Froxlor/templates/Maketank/user/error_report.html.twig
Udo Waechter 53a6485a6e
Some checks failed
continuous-integration/drone/push Build is failing
Maketank Theme migration
2024-01-30 13:52:59 +01:00

27 lines
879 B
Twig

{% extends "Froxlor/userarea.html.twig" %}
{% block heading %}
<div>
<h5 class="mb-1">
<i class="fa-solid fa-bug me-1"></i>
{{ lng('error.send_report_title') }}
</h5>
</div>
{% endblock %}
{% block content %}
<form action="{{ linker({'section':'index','page':'send_error_report','errorid':errorid}) }}" class="col-12 d-flex flex-column" method="post" enctype="application/x-www-form-urlencoded">
<div class="alert alert-primary" role="alert">{{ lng('error.send_report_desc')|raw }}</div>
<code class="border rounded bg-white p-2 mb-3">{{ mail_html|nl2br }}</code>
<div>
<input type="hidden" name="csrf_token" value="{{ csrf_token }}"/>
<input type="hidden" name="send" value="send"/>
<div class="col-12 text-end">
<button type="submit" class="btn btn-primary">{{ lng('error.send_report') }}</button>
</div>
</div>
</form>
{% endblock %}