mirror of
https://github.com/slawkens/myaac.git
synced 2026-01-18 12:16:24 +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
59 lines
878 B
Twig
59 lines
878 B
Twig
Your account name, new password and new e-mail.<br/>
|
|
<table class="myaac-table" style="width: 100%;">
|
|
|
|
<thead>
|
|
<tr>
|
|
<th class="white">
|
|
<b>Your account name, new password and new e-mail</b>
|
|
</th>
|
|
</tr>
|
|
</thead>
|
|
|
|
<tbody>
|
|
<tr>
|
|
<td>
|
|
|
|
<table>
|
|
<tr>
|
|
<td>
|
|
Account name:
|
|
</td>
|
|
<td>
|
|
<b>{{ account.getName() }}</b>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>
|
|
New password:
|
|
</td>
|
|
<td>
|
|
<b>{{ newPassword }}</b>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>
|
|
New e-mail address:
|
|
</td>
|
|
<td>
|
|
<b>{{ newEmail }}</b>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
|
|
{{ statusMsg|raw }}
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
|
|
</table>
|
|
<br>
|
|
<table style="width: 100%">
|
|
<tr>
|
|
<td align="center">
|
|
<form action="{{ getLink('account/manage') }}" method="post">
|
|
{{ include('buttons.login.html.twig') }}
|
|
</form>
|
|
</td>
|
|
</tr>
|
|
</table>
|