mirror of
https://github.com/slawkens/myaac.git
synced 2025-04-26 17:29:21 +02:00
25 lines
841 B
Twig
25 lines
841 B
Twig
{% set title = 'Delete player invitation' %}
|
|
{% set description = 'Are you sure you want to delete player with name <b>' ~ player_name ~ '</b> from "invites list"?' %}
|
|
{% set custom_buttons = '' %}
|
|
{{ include('success.html.twig') }}
|
|
<br/>
|
|
<div style="text-align:center">
|
|
<table border="0" cellspacing="0" cellpadding="0" width="100%">
|
|
<tr>
|
|
<td align="right" width="50%">
|
|
<form action="{{ getLink('guilds') }}?action=delete_invite&guild={{ guild_name }}&name={{ player_name }}&todo=save" method="post">
|
|
{{ csrf() }}
|
|
{{ include('buttons.submit.html.twig') }}
|
|
</form>
|
|
</td>
|
|
<td style="width: 10px; "></td>
|
|
<td>
|
|
<form action="{{ getLink('guilds') }}?action=show&guild={{ guild_name }}" method="post">
|
|
{{ csrf() }}
|
|
{{ include('buttons.back.html.twig') }}
|
|
</form>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</div>
|