mirror of
https://github.com/slawkens/myaac.git
synced 2025-11-02 08:56:24 +01:00
Merge branch 'main' into feature/refactor-account-lost
This commit is contained in:
@@ -9,23 +9,29 @@ Please enter your current password and a new password. For your security, please
|
||||
<span>Current Password:</span>
|
||||
</td>
|
||||
<td>
|
||||
<input form="form" type="password" name="oldpassword" size="30" maxlength="29">
|
||||
<input form="form" type="password" id="old_password" name="old_password" size="30" maxlength="29">
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
{{ hook('HOOK_ACCOUNT_CHANGE_PASSWORD_AFTER_OLD_PASSWORD') }}
|
||||
|
||||
<tr>
|
||||
<td class="LabelV">
|
||||
<span>New Password:</span>
|
||||
</td>
|
||||
<td style="width:90%;">
|
||||
<input form="form" type="password" name="newpassword" size="30" maxlength="29">
|
||||
<input form="form" type="password" id="new_password" name="new_password" size="30" maxlength="29">
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
{{ hook('HOOK_ACCOUNT_CHANGE_PASSWORD_AFTER_NEW_PASSWORD') }}
|
||||
|
||||
<tr>
|
||||
<td class="LabelV">
|
||||
<span>New Password Again:</span>
|
||||
</td>
|
||||
<td>
|
||||
<input form="form" type="password" name="newpassword_confirm" size="30" maxlength="29">
|
||||
<input form="form" type="password" id="new_password_confirm" name="new_password_confirm" size="30" maxlength="29">
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
45
system/templates/account.resend-email-verify.html.twig
Normal file
45
system/templates/account.resend-email-verify.html.twig
Normal file
@@ -0,0 +1,45 @@
|
||||
Please enter your account Email address.<br/><br/>
|
||||
{% set title = 'Resend Email' %}
|
||||
{% set background = config('darkborder') %}
|
||||
{% set content %}
|
||||
<table style="width:100%;">
|
||||
<tr>
|
||||
<td class="LabelV" >
|
||||
<span><label for="email">Email Address:</label></span>
|
||||
</td>
|
||||
<td style="width:90%;">
|
||||
<input type="email" form="form" id="email" name="email" size="30" maxlength="50" autofocus/>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
{% endset %}
|
||||
{% include 'tables.headline.html.twig' %}
|
||||
<br/>
|
||||
<table style="width:100%;">
|
||||
<tr align="center">
|
||||
<td>
|
||||
<table border="0" cellspacing="0" cellpadding="0">
|
||||
<tr>
|
||||
<td style="border:0;">
|
||||
<form id="form" action="{{ getLink('account/resend-email-verify') }}" method="post">
|
||||
{{ csrf() }}
|
||||
<input type="hidden" name="submit" value="1"/>
|
||||
{{ include('buttons.submit.html.twig') }}
|
||||
</form>
|
||||
</td>
|
||||
<tr>
|
||||
</table>
|
||||
</td>
|
||||
<td>
|
||||
<table border="0" cellspacing="0" cellpadding="0">
|
||||
<tr>
|
||||
<td style="border:0;">
|
||||
<form action="{{ getLink('news') }}" method="post">
|
||||
{{ include('buttons.back.html.twig') }}
|
||||
</form>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
@@ -9,7 +9,7 @@
|
||||
<div class="AttentionSign" style="background-image:url({{ template_path }}/images/content/attentionsign.gif);"></div>
|
||||
<b>The Following Errors Have Occurred:</b><br/>
|
||||
{% for error in errors %}
|
||||
<li>{{ error|striptags('<b>')|raw }}</li>
|
||||
<li>{{ error|striptags('<b><a>')|raw }}</li>
|
||||
{% endfor %}
|
||||
</div>
|
||||
<div class="BoxFrameHorizontal" style="background-image:url({{ template_path }}/images/content/box-frame-horizontal.gif);"></div>
|
||||
@@ -17,4 +17,4 @@
|
||||
<div class="BoxFrameEdgeLeftBottom" style="background-image:url({{ template_path }}/images/content/box-frame-edge.gif);"></div>
|
||||
</div>
|
||||
</div>
|
||||
<br/>
|
||||
<br/>
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
Hello {{ account }}!<br/>
|
||||
<br/>
|
||||
You requested to resend the verify Email on {{ config.lua.serverName }}!<br/>
|
||||
<br/>
|
||||
|
||||
To verify your email address please click the link below:<br/>
|
||||
{{ verify_url|raw }}
|
||||
@@ -101,7 +101,7 @@
|
||||
|
||||
<tr>
|
||||
<td class="LabelV150"><b>Location Datacenter:</b></td>
|
||||
<td>{{ setting('core.online_datacenter') }} <small>(Server date & time: - {{ "now"|date("d/m/Y H:i:s") }})</small></td>
|
||||
<td>{{ setting('core.online_datacenter')|raw }} <small>(Server date & time: - {{ "now"|date("d/m/Y H:i:s") }})</small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="LabelV150"><b>PvP Type:</b></td>
|
||||
|
||||
Reference in New Issue
Block a user