WizdomWeb/resources/views/pages/unsubscribe_success.php

36 lines
1.0 KiB
PHP

<?php
// File: unsubscribe_success.php
// Version: 1.1
// Purpose: Confirmation message shown after a successful unsubscribe (used as success view).
use WizdomNetworks\WizeWeb\Core\View;
ob_start();
?>
<section class="verify-section section pt-5" style="padding-top: 7rem;">
<div class="container text-center">
<div class="icon mb-4" style="padding-top: 3rem;">
<i class="bi bi-check-circle text-success" style="font-size: 4rem;"></i>
</div>
<h2 class="mb-3">Unsubscribe Successful</h2>
<p class="lead">
You've successfully been removed from our mailing list.<br>
If this was a mistake, you can re-subscribe anytime.
</p>
<div class="my-4">
<img src="/assets/img/unsubscribed.webp" alt="Unsubscribed" class="img-fluid rounded shadow" style="max-width: 400px;">
</div>
<div class="mt-5 text-center">
<a href="/" class="btn btn-outline-primary">Return to Home</a>
</div>
</div>
</section>
<?php
$html = ob_get_clean();
View::render('layouts/arsha', ['content' => $html, 'hideNavbar' => true]);
?>