Files
willes_AI/home.php

21 lines
603 B
PHP
Raw Normal View History

<?php
session_start();
if (!isset($_SESSION['user_id'])) {
header("Location: /landing.php");
exit();
}
include($_SERVER['DOCUMENT_ROOT'] . '/inc/php/header.php');
2025-07-17 01:05:46 +02:00
require_once($_SERVER['DOCUMENT_ROOT'] . '/db.php');
$conn = getConnection();?>
2025-07-10 00:00:10 +02:00
<body>
<div class="container">
<h1>AI Email Generator</h1>
<p>Effortlessly craft polished, professional emails in seconds.</p>
2025-07-10 00:21:08 +02:00
<a href="/"><button>Start Generating Emails</button></a>
2025-07-10 00:00:10 +02:00
<button id="darkModeBtn">Toggle Dark Mode</button>
</div>
2025-07-10 00:21:08 +02:00
<?php include($_SERVER['DOCUMENT_ROOT'] . '/inc/php/footer.php');