2020-06-28 19:32:30 +02:00
|
|
|
@extends(templates/layout_normal)
|
2020-06-27 00:23:57 +02:00
|
|
|
|
2020-06-28 19:32:30 +02:00
|
|
|
@section(main)
|
2020-06-14 17:20:20 +02:00
|
|
|
<h2>Account cancellation</h2>
|
|
|
|
<div class="box">
|
|
|
|
<?php if ($success) : ?>
|
|
|
|
<p class="justify">Cancellation was successfull. You can <a href="/signup" title="Sign up">sign up</a> any time if you want!</p>
|
|
|
|
<?php else: ?>
|
|
|
|
<p class="error justify">Cancellation failed. Please check the link you entered! Maybe the account was already deleted, in this case no further action is required.</p>
|
|
|
|
<?php endif; ?>
|
|
|
|
</div>
|
2020-06-27 00:23:57 +02:00
|
|
|
@endsection
|