mirror of
https://github.com/slawkens/myaac.git
synced 2025-06-26 06:40:14 +02:00
110 lines
3.3 KiB
Twig
110 lines
3.3 KiB
Twig
{% set title = 'Deactivate Email Code Authentication' %}
|
|
{% set content %}
|
|
<table style="width:100%;">
|
|
<tbody>
|
|
<tr>
|
|
<td>
|
|
<div class="TableContentContainer ">
|
|
<table class="TableContent" width="100%" style="border:1px solid #faf0d7;">
|
|
<tbody>
|
|
<tr>
|
|
<td>To deactivate <b>two-factor email code authentication</b> for your account, enter the
|
|
received <b>email code</b> below. Note, however, that <b>email code authentication</b>
|
|
is an important security feature which helps to prevent any unauthorised access to your
|
|
Tibia account.
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>
|
|
<div class="TableContentContainer">
|
|
<table class="TableContent" width="100%" style="border:1px solid #faf0d7;">
|
|
<tbody>
|
|
<tr>
|
|
<td>
|
|
<div style="float: right;">
|
|
<form
|
|
action="{{ getLink('account/2fa') }}?action=email-code&step=resend"
|
|
method="post"
|
|
style="padding:0;margin:0;"
|
|
>
|
|
{{ csrf() }}
|
|
|
|
{% set button_name = 'Resend Email Code' %}
|
|
{{ include('buttons.base.html.twig') }}
|
|
</form>
|
|
</div>
|
|
An <b>email code</b> has already been sent to the email address assigned to your
|
|
account.
|
|
Please check your email account's spam/junk filter and make sure that your mailbox is
|
|
not
|
|
full.<br>In case you need a new email code, you can request one by clicking on "Resend
|
|
Email
|
|
Code".
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>
|
|
<div class="TableContentContainer">
|
|
<table class="TableContent" width="100%" style="border:1px solid #faf0d7;">
|
|
<tbody>
|
|
<tr>
|
|
<td>To complete the deactivation of <b>email code authentication</b>, please enter the <b>email
|
|
code</b> you received at the email address assigned to your account.
|
|
<div style="margin-top: 15px; margin-bottom: 15px;">
|
|
<div class="LabelV150 {{ wrongCode ? 'red' : '' }}" style="float:left;"><label
|
|
for="email-code">Email Code:</label></div>
|
|
<input form="form-code" id="email-code" name="email-code" maxlength="15"
|
|
autocomplete="off">
|
|
{% if wrongCode %}
|
|
<br/>
|
|
<div class="LabelV150" style="float:left;"> </div>
|
|
<div class="FormFieldError">Invalid email code!</div>
|
|
{% endif %}
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
{% endset %}
|
|
{% include 'tables.headline.html.twig' %}
|
|
<table style="width: 100%;">
|
|
<tbody>
|
|
<tr align="center" valign="top">
|
|
<td>
|
|
<form id="form-code" method="post" action="{{ getLink('account/2fa') }}?action=email-code">
|
|
{{ csrf() }}
|
|
|
|
<input type="hidden" name="step" value="deactivate">
|
|
<input type="hidden" name="save" value="1">
|
|
|
|
{% set button_name = 'Continue' %}
|
|
{% set button_color = 'green' %}
|
|
{{ include('buttons.submit.html.twig') }}
|
|
</form>
|
|
</td>
|
|
<td>
|
|
<form action="{{ getLink('account/manage') }}" method="post" style="padding:0;margin:0;">
|
|
{{ csrf() }}
|
|
{% set button_color = 'blue' %}
|
|
{{ include('buttons.back.html.twig') }}
|
|
</form>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|