init
This commit is contained in:
26
home.php
Normal file
26
home.php
Normal file
@@ -0,0 +1,26 @@
|
||||
|
||||
<!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>
|
||||
Reference in New Issue
Block a user