This repository has been archived on 2024-06-26. You can view files and clone it, but cannot push or open issues or pull requests.
sakura/resources/views/yuuno/auth/activate_failed.twig

25 lines
1.1 KiB
Twig
Raw Normal View History

2017-03-23 15:01:53 +00:00
{% 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 %}