mirror of
https://github.com/slawkens/myaac.git
synced 2025-10-14 01:34:55 +02:00
72 lines
1.5 KiB
Twig
72 lines
1.5 KiB
Twig
Set new password and e-mail to your account.<br>
|
|
<form action="{{ getLink('account/lost/recovery-key/step-3') }}" method="post">
|
|
|
|
{{ csrf() }}
|
|
|
|
<input type="hidden" name="key" VALUE="{{ key }}">
|
|
|
|
<input type="hidden" name="character" value="">
|
|
<table class="myaac-table" style="width: 100%">
|
|
|
|
<thead>
|
|
<tr>
|
|
<th class="white">
|
|
<b>Please enter new password and e-mail</b>
|
|
</th>
|
|
</tr>
|
|
</thead>
|
|
|
|
<tbody>
|
|
<tr>
|
|
<td>
|
|
|
|
<table>
|
|
<tr>
|
|
<td>
|
|
<label for="nick">Account of character:</label>
|
|
</td>
|
|
<td>
|
|
<input type="text" id="nick" name="nick" value="{{ nick }}" size="40" readonly="readonly">
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>
|
|
<label for="password">New password:</label>
|
|
</td>
|
|
<td>
|
|
<input type="password" id="password" name="password" value="" size="40">
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>
|
|
<label for="password_repeat">Repeat new password:</label>
|
|
</td>
|
|
<td>
|
|
<input type="password" id="password_repeat" name="password_repeat" value="" size="40">
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>
|
|
<label for="email">New e-mail address:</label>
|
|
</td>
|
|
<td>
|
|
<input type="text" id="email" name="email" value="" size="40">
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
|
|
</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>
|