39 lines
1.5 KiB
PHP
Executable File
39 lines
1.5 KiB
PHP
Executable File
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Activate Your Account</title>
|
|
<link rel="stylesheet" href="/css/styles.css"> <!-- Adjust the path accordingly -->
|
|
<link href="<?= base_url('assets/images/favicon.ico') ?>" rel="icon">
|
|
</head>
|
|
|
|
<body>
|
|
<div class="container">
|
|
<div class="left-side">
|
|
Al Rahma Sunday School
|
|
<img src="<?= base_url('assets/images/logo.png') ?>" alt="School Logo" class="logo"> <!-- Adjust the path accordingly -->
|
|
</div>
|
|
<div class="right-side">
|
|
<div class="activate-account-container">
|
|
<h2>Activate your account</h2>
|
|
<p>You account is not active yet. We sent you an email during the account registration. Please click the
|
|
confirmation link in that email.</p>
|
|
<p>If the link is expired, please use the button below to resend the confirmation email</p>
|
|
<div class="form-actions">
|
|
<button type="submit">Resend Confirmation email</button>
|
|
</div>
|
|
<p>If you don't remember the email or have access to the email address you used to register, please </p>
|
|
<div class="form-links">
|
|
<a href="/register">Register a new account</a>
|
|
<br>
|
|
<br>
|
|
<a href="/">Login page</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
|
|
</html> |