Namespace and ClassPath rewrites
This commit is contained in:
27
Core/Templates/account/resend_confirm_email.twig
Normal file
27
Core/Templates/account/resend_confirm_email.twig
Normal file
@@ -0,0 +1,27 @@
|
||||
{% 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 %}
|
||||
Reference in New Issue
Block a user