63 lines
2.1 KiB
PHP
63 lines
2.1 KiB
PHP
<?php
|
|
require_once($_SERVER['DOCUMENT_ROOT'] . '/inc/php/auth.php');
|
|
requireLogin(); // only logged-in users can pass
|
|
|
|
require_once($_SERVER['DOCUMENT_ROOT'] . '/db.php');
|
|
$conn = getConnection();
|
|
|
|
include($_SERVER['DOCUMENT_ROOT'] . '/inc/php/header.php');
|
|
require_once($_SERVER['DOCUMENT_ROOT'] . '/inc/php/resources.php'); // load languages
|
|
?>
|
|
|
|
<body>
|
|
<div class="dashboard">
|
|
<!-- Sidebar -->
|
|
<aside class="sidebar">
|
|
<h2 class="logo">📧 AI Email</h2>
|
|
<nav>
|
|
<ul>
|
|
<li><a href="/home.php">✍️ Generate</a></li>
|
|
<li><a href="/settings.php">⚙️ Settings</a></li>
|
|
<li><a href="/logout.php">🚪 Logout</a></li>
|
|
</ul>
|
|
</nav>
|
|
</aside>
|
|
|
|
<!-- Main Content -->
|
|
<main class="main-content">
|
|
<header>
|
|
<h1>Welcome to AI Email Generator</h1>
|
|
<p>Effortlessly craft polished, professional emails in seconds.</p>
|
|
</header>
|
|
|
|
<section>
|
|
<div class="container">
|
|
<!-- adjust action depending on vhost/subfolder -->
|
|
<form action="/process.php" method="POST">
|
|
<label for="email_input">Your rough text:</label><br>
|
|
<textarea name="email_input" rows="6" cols="50" required></textarea><br><br>
|
|
|
|
<label for="tone">Select tone:</label>
|
|
<select name="tone" required>
|
|
<option value="formal">Formal</option>
|
|
<option value="casual">Casual</option>
|
|
<option value="persuasive">Persuasive</option>
|
|
<option value="angry">Angry</option>
|
|
</select><br><br>
|
|
|
|
<label for="language">Language:</label>
|
|
<select name="language" required>
|
|
<?php foreach (getLanguages() as $lang): ?>
|
|
<option value="<?= htmlspecialchars($lang) ?>"><?= htmlspecialchars($lang) ?></option>
|
|
<?php endforeach; ?>
|
|
</select><br><br>
|
|
|
|
<button type="submit">Generate Email</button>
|
|
</form>
|
|
</div>
|
|
</section>
|
|
</main>
|
|
</div>
|
|
|
|
<?php include($_SERVER['DOCUMENT_ROOT'] . '/inc/php/footer.php'); ?>
|