42 lines
1.6 KiB
PHP
42 lines
1.6 KiB
PHP
<?php
|
||
/**
|
||
* File: contact_check_email.php
|
||
* Version: 1.1
|
||
* Path: /resources/views/pages/contact_check_email.php
|
||
* Purpose: Informs the user that verification is required and offers a resend option.
|
||
* Project: Wizdom Networks Website
|
||
*/
|
||
?>
|
||
<section class="verify-section section pt-5">
|
||
<div class="container text-center">
|
||
<div class="icon mb-4">
|
||
<i class="bi bi-envelope-check text-info" style="font-size: 4rem;"></i>
|
||
</div>
|
||
<h2 class="mb-3">Please Verify Your Email</h2>
|
||
<p class="lead">We’ve sent you a confirmation link. Please check your inbox to verify your message.</p>
|
||
|
||
<div class="my-4">
|
||
<img src="/assets/img/newsletter-thanks.webp" alt="Check Email" class="img-fluid rounded shadow" style="max-width: 400px;">
|
||
</div>
|
||
|
||
<div class="mt-4">
|
||
<a href="/" class="btn btn-outline-primary">Return to Home</a>
|
||
</div>
|
||
|
||
<!-- Resend Verification Form -->
|
||
<div class="mt-5 pt-4 border-top">
|
||
<h5 class="mb-3">Didn't get the email?</h5>
|
||
<p>Enter your email again to receive a new verification link.</p>
|
||
<form action="/resend-verification" method="post" class="row justify-content-center" style="max-width: 500px; margin: 0 auto;">
|
||
<input type="hidden" name="type" value="contact">
|
||
<div class="col-12 mb-2">
|
||
<input type="email" name="email" class="form-control" placeholder="Enter your email" required>
|
||
</div>
|
||
<div class="col-12">
|
||
<button type="submit" class="btn btn-secondary">Resend Verification Link</button>
|
||
</div>
|
||
</form>
|
||
</div>
|
||
</div>
|
||
</section>
|