mirror of
https://github.com/slawkens/myaac.git
synced 2026-01-18 20:26:22 +01:00
* [WIP] Account Lost refactor * [WIP] Refactor account/lost * Update form.html.twig * Use myaac-table class for tables * Set $title to 'Lost Account' * Remove duplicated code - extract lostAccountCooldown function * [WIP] Add csrfProtect() * Refactor code, better $error messages * Formatting * Refactor Add missing password check Formatting * [WIP] Refactor * [WIP] Refactor account lost * [WIP] Refactor account lost - fixes * [WIP] Account lost refactor * Fixes * Add account lost hooks for password strength plugin
44 lines
1.4 KiB
Twig
44 lines
1.4 KiB
Twig
The Lost Account Interface can help you to get back your account name and password. Please enter your character name and select what you want to do.<br/>
|
|
<form action="{{ getLink('account/lost/step-1') }}" method="post">
|
|
|
|
{{ csrf() }}
|
|
|
|
<input type="hidden" name="character" value="">
|
|
<table class="myaac-table" style="width: 100%">
|
|
<thead>
|
|
<tr>
|
|
<th class="white"><b>Please enter your character name</b></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr>
|
|
<td>
|
|
<input type="text" name="nick" size="40" autofocus/><br>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
<table style="width: 100%; border-spacing: 1px">
|
|
<tr>
|
|
<td style="padding: 4px; background: {{ config('vdarkborder') }}" class="white"><b>What do you want?</b></td>
|
|
</tr>
|
|
<tr>
|
|
<td style="padding: 4px; background: {{ config('darkborder') }}">
|
|
<input type="radio" name="action" id="action_type_email" value="email">
|
|
<label for="action_type_email"> Send me new password and my account name to account e-mail address.</label><br/>
|
|
<input type=radio name="action" id="action_type_key" value="recovery-key">
|
|
<label for="action_type_key"> I got <b>recovery key</b> and want set new password and e-mail address to my account.</label><br/>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
<br/>
|
|
<table style="width: 100%">
|
|
<tr>
|
|
<td align="center">
|
|
{% set button_name = 'Submit' %}
|
|
{% include('buttons.base.html.twig') %}
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</form>
|