68 lines
2.1 KiB
PHP
68 lines
2.1 KiB
PHP
<?php
|
|
session_start();
|
|
|
|
if (isset($_SESSION['user_id'])) {
|
|
header('Location: dashboard.php');
|
|
exit;
|
|
}
|
|
|
|
// Read project preview data from environment
|
|
$projectDescription = $_SERVER['PROJECT_DESCRIPTION'] ?? 'The backend for an AI Cinema Engine.';
|
|
$projectImageUrl = $_SERVER['PROJECT_IMAGE_URL'] ?? '';
|
|
|
|
?>
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Welcome to AI Cinema Engine</title>
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet">
|
|
<link rel="stylesheet" href="assets/css/custom.css">
|
|
<style>
|
|
body {
|
|
background-color: #f8f9fa;
|
|
}
|
|
.hero {
|
|
background: linear-gradient(to right, #4F46E5, #2563EB);
|
|
color: white;
|
|
padding: 8rem 0;
|
|
text-align: center;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<div class="hero">
|
|
<div class="container">
|
|
<h1 class="display-4">AI Cinema Engine</h1>
|
|
<p class="lead"><?= htmlspecialchars($projectDescription) ?></p>
|
|
<a href="register.php" class="btn btn-light btn-lg mx-2">Get Started</a>
|
|
<a href="login.php" class="btn btn-outline-light btn-lg mx-2">Login</a>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="container mt-5">
|
|
<div class="row">
|
|
<div class="col-md-4 text-center">
|
|
<h3>Feature 1</h3>
|
|
<p>Describe a core feature of your service here.</p>
|
|
</div>
|
|
<div class="col-md-4 text-center">
|
|
<h3>Feature 2</h3>
|
|
<p>Describe another great benefit of using your application.</p>
|
|
</div>
|
|
<div class="col-md-4 text-center">
|
|
<h3>Feature 3</h3>
|
|
<p>Highlight a unique selling proposition or technology.</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<footer class="text-center mt-5 py-3 bg-light">
|
|
<p>© <?php echo date('Y'); ?> AI Cinema Engine. All Rights Reserved.</p>
|
|
</footer>
|
|
|
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js"></script>
|
|
</body>
|
|
</html>
|