mirror of
https://github.com/slawkens/myaac.git
synced 2025-10-14 01:34:55 +02:00
36 lines
1.1 KiB
Twig
36 lines
1.1 KiB
Twig
Set new password and e-mail to your account.<br>
|
|
<form action="{{ getLink('account/lost/step-3') }}" method="post">
|
|
<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>
|
|
Account of character: <input type="text" name="nick" value="{{ nick }}" size="40" readonly="readonly"><br/>
|
|
New password: <input id="passor" type="password" name="passor" value="" size="40"><br/>
|
|
Repeat new password: <input id="passor2" type="password" name="passor" value="" size="40"><br/>
|
|
New e-mail address: <input id="email" type="text" name="email" value="" size="40"><br/>
|
|
<input type="hidden" name="key" VALUE="{{ recKey }}">
|
|
</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>
|