24 lines
1.1 KiB
Twig
24 lines
1.1 KiB
Twig
{% extends '@yuuno/master.twig' %}
|
|
|
|
{% set title = 'Activation failed' %}
|
|
|
|
{% block content %}
|
|
<div class="auth content content--auth">
|
|
<div class="content__header">
|
|
Activation failed
|
|
</div>
|
|
<div style="text-align: left; padding: 10px">
|
|
<p>Something went wrong while trying to activate your account!</p>
|
|
<p>This can be caused by the following things:</p>
|
|
<ul style="padding-left: 20px; list-style: square">
|
|
<li>Your account has been deleted in the time it took you to activate (+30 days).</li>
|
|
<li>Your account is already activated. In which case, why are you even here?</li>
|
|
<li>Your activation code somehow got invalidated. <a href="{{ route('info.contact') }}">Contact us</a> if you think this is the case.</li>
|
|
</ul>
|
|
<p>Or alternatively...</p>
|
|
</div>
|
|
<a class="input__button auth__button" href="{{ route('auth.activate') }}">
|
|
<i class="fa fa-repeat"></i> Resend activation e-mail
|
|
</a>
|
|
</div>
|
|
{% endblock %}
|