mirror of
https://github.com/slawkens/myaac.git
synced 2025-05-23 22:24:27 +02:00
27 lines
558 B
Twig
27 lines
558 B
Twig
{% if new_line is defined and new_line %}
|
|
<br/>
|
|
{% endif %}
|
|
|
|
{% set _center = false %}
|
|
|
|
{% if center is defined and center %}
|
|
{% set _center = true %}
|
|
{% endif %}
|
|
|
|
{% if _center %}
|
|
<table border="0" cellspacing="1" cellpadding="4" width="100%">
|
|
<tbody>
|
|
<tr>
|
|
<td align="center">
|
|
{% endif %}
|
|
<form action="{% if action is not defined %}{{ getLink('account/manage') }}{% else %}{{ action }}{% endif %}" method="post">
|
|
{{ csrf() }}
|
|
{{ include('buttons.back.html.twig') }}
|
|
</form>
|
|
{% if _center %}
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
{% endif %}
|