21 lines
603 B
PHP
21 lines
603 B
PHP
<?php
|
|
session_start();
|
|
|
|
if (!isset($_SESSION['user_id'])) {
|
|
header("Location: /landing.php");
|
|
exit();
|
|
}
|
|
|
|
include($_SERVER['DOCUMENT_ROOT'] . '/inc/php/header.php');
|
|
require_once($_SERVER['DOCUMENT_ROOT'] . '/db.php');
|
|
$conn = getConnection();?>
|
|
|
|
<body>
|
|
<div class="container">
|
|
<h1>AI Email Generator</h1>
|
|
<p>Effortlessly craft polished, professional emails in seconds.</p>
|
|
<a href="/"><button>Start Generating Emails</button></a>
|
|
<button id="darkModeBtn">Toggle Dark Mode</button>
|
|
</div>
|
|
<?php include($_SERVER['DOCUMENT_ROOT'] . '/inc/php/footer.php');
|