28 lines
1.1 KiB
Twig
28 lines
1.1 KiB
Twig
|
{% extends "account.twig" %}
|
||
|
|
||
|
{% set view_title = 'Resend Confirm Email' %}
|
||
|
{% set view_icon = 'envelope' %}
|
||
|
{% set view_description = 'Request a new confirmation email to finalize the account creation' %}
|
||
|
|
||
|
{% block view_content %}
|
||
|
<p class='lead'>Enter your E-Mail address, to receive a new e-mail to confirm your registration.</p>
|
||
|
<form>
|
||
|
<div class="input-group">
|
||
|
<div class="input-group-append">
|
||
|
<span class="input-group-text"><i class="fas fa-at"></i></span>
|
||
|
</div>
|
||
|
<input id="email" autocomplete='email' name="email" placeholder="E-Mail address" class="form-control" type="email" maxlength="64" />
|
||
|
</div>
|
||
|
<div class="input-group mt-2" style='position: absolute;bottom: 15px'>
|
||
|
<button id='btnResendConfirmEmail' class='btn btn-primary'>
|
||
|
Request
|
||
|
</button>
|
||
|
<a href='/login' style='margin-left: 10px'>
|
||
|
<button class='btn btn-secondary' type='button'>
|
||
|
Back to Login
|
||
|
</button>
|
||
|
</a>
|
||
|
</div>
|
||
|
</form>
|
||
|
{% endblock %}
|