mirror of
https://github.com/slawkens/myaac.git
synced 2025-10-13 17:24:54 +02:00

* feat: Resend Email Verify + rework the whole concept, based on new table for email hashes This make it possible that every email will work, not matter if first or last * Nothing important: change variable name * Change message
46 lines
1.1 KiB
Twig
46 lines
1.1 KiB
Twig
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>
|