Files
willes_AI/home.php
Dr3amFury 6af2403497 init
2025-07-10 00:00:10 +02:00

27 lines
686 B
PHP

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>AI Email Generator</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<h1>AI Email Generator</h1>
<p>Effortlessly craft polished, professional emails in seconds.</p>
<a href="index.php"><button>Start Generating Emails</button></a>
<button id="darkModeBtn">Toggle Dark Mode</button>
</div>
<script>
const darkBtn = document.getElementById('darkModeBtn');
if (darkBtn) {
darkBtn.onclick = function () {
document.body.classList.toggle('dark-mode');
};
}
</script>
</body>
</html>