File: /var/www/html/obaasimaghana/app/views/layouts/auth.php
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title><?php echo $title ?? APP_NAME; ?></title>
<!-- Tailwind CSS -->
<script src="https://cdn.tailwindcss.com"></script>
<!-- Font Awesome -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
<style>
body {
background-color: #f3f4f6;
}
.auth-bg {
background-color: #e6f7f1;
}
.auth-illustration {
background-image: url('<?php echo SITE_URL; ?>/assets/images/auth-illustration.svg');
background-repeat: no-repeat;
background-position: center;
background-size: contain;
}
</style>
</head>
<body class="min-h-screen flex items-center justify-center p-4 md:p-6">
<div class="w-full max-w-5xl bg-white rounded-2xl shadow-xl overflow-hidden grid md:grid-cols-2">
<!-- Left Side - Illustration & Text -->
<div class="hidden md:flex flex-col auth-bg p-12">
<div class="flex-grow flex flex-col justify-center max-w-md mx-auto">
<div class="auth-illustration w-full h-64 mb-8"></div>
<h1 class="text-3xl font-bold text-gray-800 mb-4">Empower Yourself For Free</h1>
<p class="text-gray-600 text-lg">
Join our community of 10 million+ learners, upskill with CPD UK accredited courses, explore career development tools and psychometrics - all for free.
</p>
</div>
<div class="text-center text-sm text-gray-500">
Having trouble? <a href="<?php echo SITE_URL; ?>/contact" class="text-emerald-600 hover:text-emerald-700">Get in touch</a>
</div>
</div>
<!-- Right Side - Form Content -->
<div class="flex items-center justify-center p-6 md:p-12">
<div class="w-full max-w-md">
<?php echo $content ?? ''; ?>
</div>
</div>
</div>
</body>
</html>