mirror of
https://github.com/slawkens/myaac.git
synced 2025-10-14 01:34:55 +02:00
31 lines
742 B
Twig
31 lines
742 B
Twig
Please enter code from e-mail and name of one character from account. Then press Submit.<br/>
|
|
<form action="{{ getLink('account/lost/check-code') }}" method="post">
|
|
<table class="myaac-table" style="width: 100%;">
|
|
<thead>
|
|
<tr>
|
|
<th class="white">
|
|
<b>Code & character name</b>
|
|
</th>
|
|
</tr>
|
|
</thead>
|
|
|
|
<tbody>
|
|
<tr>
|
|
<td>
|
|
Your code: <input type="text" name="code" value="{{ code }}" size="40"><br/>
|
|
Character: <input type="text" name="character" value="{{ character }}" size="40"><br/>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
<br>
|
|
<table style="width: 100%">
|
|
<tr>
|
|
<td align="center">
|
|
{% set button_name = 'Submit' %}
|
|
{% include('buttons.base.html.twig') %}
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</form>
|