mirror of
https://github.com/slawkens/myaac.git
synced 2025-04-26 17:29:21 +02:00
17 lines
448 B
Twig
17 lines
448 B
Twig
<h2>{{ title }}</h2><br/>
|
|
{{ description|raw }}
|
|
{% if custom_buttons is defined %}
|
|
{{ custom_buttons|raw }}
|
|
{% else %}
|
|
<div style="text-align: center; margin: 0 auto;">
|
|
<table border="0" cellspacing="0" cellpadding="0">
|
|
<form action="?subtopic=accountmanagement" method="post">
|
|
<tr>
|
|
<td style="border:0px; text-align: center;">
|
|
<input type="submit" name="Back" value="Back"/>
|
|
</td>
|
|
</tr>
|
|
</form>
|
|
</table>
|
|
</div>
|
|
{% endif %} |