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
31 lines
625 B
Twig
31 lines
625 B
Twig
New password to your account is below. Now you can log in.<BR>
|
|
<table class="myaac-table" style="width: 100%;">
|
|
|
|
<thead>
|
|
<tr>
|
|
<th class="white"><b>Changed password</b></th>
|
|
</tr>
|
|
</thead>
|
|
|
|
<tbody>
|
|
<tr>
|
|
<td>
|
|
New password: <b>{{ newPassword }}</b><br/>
|
|
Account name: <i>(Already on your e-mail)</i><br/>
|
|
{{ statusMsg|raw }}
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
<br/>
|
|
<table style="width: 100%">
|
|
<tr>
|
|
<td align="center">
|
|
<form action="{{ getLink('account/manage') }}">
|
|
{% set button_name = 'Login' %}
|
|
{% include('buttons.base.html.twig') %}
|
|
</form>
|
|
</td>
|
|
</tr>
|
|
</table>
|