Compare commits

..

No commits in common. "ai-dev" and "master" have entirely different histories.

13 changed files with 156 additions and 806 deletions

View File

@ -1,121 +0,0 @@
body {
font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
background-color: #F9FAFB;
color: #111827;
}
h1, h2, h3, h4, h5, h6 {
font-family: Georgia, 'Times New Roman', serif;
font-weight: 700;
}
.navbar {
background-color: #FFFFFF;
box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
.navbar-brand {
font-family: Georgia, 'Times New Roman', serif;
font-weight: 700;
color: #4F46E5 !important;
}
.hero {
padding: 6rem 0;
background: linear-gradient(135deg, rgba(79, 70, 229, 0.05), rgba(139, 92, 246, 0.05));
}
.hero h1 {
font-size: 3.5rem;
line-height: 1.2;
}
.hero .lead {
font-size: 1.25rem;
color: #4B5563;
}
.btn-primary {
background-color: #4F46E5;
border-color: #4F46E5;
padding: 0.75rem 1.5rem;
border-radius: 0.375rem;
font-weight: 600;
transition: background-color 0.2s ease-in-out;
}
.btn-primary:hover {
background-color: #4338CA;
border-color: #4338CA;
}
.btn-secondary {
background-color: transparent;
border-color: #4F46E5;
color: #4F46E5;
padding: 0.75rem 1.5rem;
border-radius: 0.375rem;
font-weight: 600;
transition: all 0.2s ease-in-out;
}
.btn-secondary:hover {
background-color: #4F46E5;
color: #FFFFFF;
}
.section {
padding: 5rem 0;
}
.feature-card {
background-color: #FFFFFF;
border: 1px solid #E5E7EB;
border-radius: 0.5rem;
padding: 2rem;
box-shadow: 0 4px 6px rgba(0,0,0,0.05);
transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
height: 100%;
}
.feature-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 15px rgba(0,0,0,0.1);
}
.feature-card h3 {
color: #4F46E5;
}
.contact-section {
background-color: #FFFFFF;
}
.form-control:focus {
border-color: #8B5CF6;
box-shadow: 0 0 0 0.25rem rgba(139, 92, 246, 0.25);
}
footer {
background-color: #111827;
color: #E5E7EB;
padding: 3rem 0;
}
footer a {
color: #9CA3AF;
text-decoration: none;
transition: color 0.2s ease-in-out;
}
footer a:hover {
color: #FFFFFF;
}
.toast-container {
position: fixed;
bottom: 1rem;
right: 1rem;
z-index: 1090;
}

View File

@ -1,74 +0,0 @@
document.addEventListener('DOMContentLoaded', function () {
const contactForm = document.getElementById('contactForm');
if (contactForm) {
contactForm.addEventListener('submit', function (e) {
e.preventDefault();
const name = document.getElementById('name').value;
const email = document.getElementById('email').value;
const message = document.getElementById('message').value;
const submitButton = this.querySelector('button[type="submit"]');
const originalButtonText = submitButton.innerHTML;
// Basic validation
if (!name || !email || !message) {
showToast('Please fill out all fields.', 'danger');
return;
}
submitButton.innerHTML = '<span class="spinner-border spinner-border-sm" role="status" aria-hidden="true"></span> Sending...';
submitButton.disabled = true;
const formData = new FormData(this);
fetch('contact_handler.php', {
method: 'POST',
body: formData
})
.then(response => response.json())
.then(data => {
if (data.success) {
showToast('Thank you! Your message has been sent.', 'success');
contactForm.reset();
} else {
showToast(data.error || 'An unknown error occurred.', 'danger');
}
})
.catch(error => {
showToast('An error occurred while sending the message.', 'danger');
console.error('Error:', error);
})
.finally(() => {
submitButton.innerHTML = originalButtonText;
submitButton.disabled = false;
});
});
}
});
function showToast(message, type = 'success') {
const toastContainer = document.getElementById('toast-container');
if (!toastContainer) return;
const toastId = 'toast-' + Date.now();
const toastHTML = `
<div id="${toastId}" class="toast align-items-center text-white bg-${type} border-0" role="alert" aria-live="assertive" aria-atomic="true">
<div class="d-flex">
<div class="toast-body">
${message}
</div>
<button type="button" class="btn-close btn-close-white me-2 m-auto" data-bs-dismiss="toast" aria-label="Close"></button>
</div>
</div>
`;
toastContainer.insertAdjacentHTML('beforeend', toastHTML);
const toastElement = document.getElementById(toastId);
const toast = new bootstrap.Toast(toastElement, { delay: 5000 });
toast.show();
toastElement.addEventListener('hidden.bs.toast', function () {
toastElement.remove();
});
}

View File

@ -1,70 +0,0 @@
<?php
header('Content-Type: application/json');
require_once __DIR__ . '/db/config.php';
require_once __DIR__ . '/mail/MailService.php';
$response = ['success' => false, 'error' => 'An unknown error occurred.'];
if ($_SERVER['REQUEST_METHOD'] !== 'POST') {
$response['error'] = 'Invalid request method.';
echo json_encode($response);
exit;
}
$name = trim($_POST['name'] ?? '');
$email = trim($_POST['email'] ?? '');
$message = trim($_POST['message'] ?? '');
if (empty($name) || empty($email) || empty($message)) {
$response['error'] = 'Please fill out all fields.';
echo json_encode($response);
exit;
}
if (!filter_var($email, FILTER_VALIDATE_EMAIL)) {
$response['error'] = 'Invalid email format.';
echo json_encode($response);
exit;
}
try {
$pdo = db();
// Idempotent table creation
$pdo->exec("CREATE TABLE IF NOT EXISTS contact_submissions (
id INT AUTO_INCREMENT PRIMARY KEY,
name VARCHAR(255) NOT NULL,
email VARCHAR(255) NOT NULL,
message TEXT NOT NULL,
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP
);");
// Insert data
$stmt = $pdo->prepare("INSERT INTO contact_submissions (name, email, message) VALUES (?, ?, ?)");
$stmt->execute([$name, $email, $message]);
// Send email notification
$mailTo = getenv('MAIL_TO') ?: 'support@flatlogic.com'; // Fallback recipient
$subject = 'New Contact Form Submission from AI Web App Generator';
$mailResult = MailService::sendContactMessage($name, $email, $message, $mailTo, $subject);
if (!empty($mailResult['success'])) {
$response['success'] = true;
unset($response['error']);
} else {
// Still a success for the user, but log the mail error
$response['success'] = true;
$response['warning'] = 'Could not send notification email.';
error_log('MailService Error: ' . ($mailResult['error'] ?? 'Unknown mail error'));
}
} catch (PDOException $e) {
error_log("Database Error: " . $e->getMessage());
$response['error'] = 'Database error. Please try again later.';
} catch (Exception $e) {
error_log("General Error: " . $e->getMessage());
$response['error'] = 'A server error occurred. Please try again later.';
}
echo json_encode($response);

View File

@ -1,42 +0,0 @@
<?php
session_start();
// If the user is not logged in, redirect to the login page.
if (!isset($_SESSION['user_id'])) {
header("Location: login.php");
exit();
}
$pageTitle = "Dashboard";
include 'partials/header.php';
?>
<div class="container my-5">
<div class="d-flex justify-content-between align-items-center mb-4">
<h1 class="h2 fw-bold">Dashboard</h1>
<a href="logout.php" class="btn btn-outline-secondary">Logout</a>
</div>
<div class="card shadow-sm mb-4">
<div class="card-body p-4">
<h2 class="h5">Welcome, <?php echo htmlspecialchars($_SESSION['user_name']); ?>!</h2>
<p class="text-muted">You are logged in as <?php echo htmlspecialchars($_SESSION['user_email']); ?>.</p>
<?php if ($_SESSION['user_role'] === 'admin'): ?>
<span class="badge bg-primary">Administrator</span>
<?php endif; ?>
</div>
</div>
<div class="card shadow-sm">
<div class="card-header">
<h3 class="h5 mb-0">AI App Generator</h3>
</div>
<div class="card-body text-center p-5">
<p class="lead">This is where the AI-powered application generator will be. <br>You'll be able to describe your app idea and see it come to life!</p>
<button class="btn btn-primary btn-lg" disabled>Coming Soon</button>
</div>
</div>
</div>
<?php include 'partials/footer.php'; ?>

View File

@ -1,32 +0,0 @@
--
-- Database: `app_30908`
--
-- --------------------------------------------------------
--
-- Table structure for table `contact_submissions`
--
CREATE TABLE IF NOT EXISTS `contact_submissions` (
`id` INT AUTO_INCREMENT PRIMARY KEY,
`name` VARCHAR(255) NOT NULL,
`email` VARCHAR(255) NOT NULL,
`message` TEXT NOT NULL,
`created_at` TIMESTAMP DEFAULT CURRENT_TIMESTAMP
);
-- --------------------------------------------------------
--
-- Table structure for table `users`
--
CREATE TABLE IF NOT EXISTS `users` (
`id` INT AUTO_INCREMENT PRIMARY KEY,
`name` VARCHAR(255) NOT NULL,
`email` VARCHAR(255) NOT NULL UNIQUE,
`password` VARCHAR(255) NOT NULL,
`role` VARCHAR(50) NOT NULL DEFAULT 'user',
`created_at` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP
);

View File

@ -8,38 +8,10 @@ define('DB_PASS', '98b730aa-be6c-479d-a47d-e5e7abc49229');
function db() {
static $pdo;
if (!$pdo) {
try {
$pdo = new PDO('mysql:host='.DB_HOST.';dbname='.DB_NAME.';charset=utf8mb4', DB_USER, DB_PASS, [
PDO::ATTR_ERRMODE => PDO::ERRMODE_EXCEPTION,
PDO::ATTR_DEFAULT_FETCH_MODE => PDO::FETCH_ASSOC,
]);
// Create users table if it doesn't exist
$pdo->exec("
CREATE TABLE IF NOT EXISTS `users` (
`id` INT AUTO_INCREMENT PRIMARY KEY,
`name` VARCHAR(255) NOT NULL,
`email` VARCHAR(255) NOT NULL UNIQUE,
`password` VARCHAR(255) NOT NULL,
`role` VARCHAR(50) NOT NULL DEFAULT 'user',
`created_at` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
");
// Create a default admin user if one doesn't exist
$stmt = $pdo->prepare("SELECT id FROM users WHERE email = ?");
$stmt->execute(['admin']);
if ($stmt->fetchColumn() === false) {
$stmt = $pdo->prepare("INSERT INTO users (name, email, password, role) VALUES (?, ?, ?, ?)");
$stmt->execute(['Admin', 'admin', password_hash('admin123', PASSWORD_DEFAULT), 'admin']);
}
} catch (PDOException $e) {
// If the database doesn't exist, this will fail.
// This is a simple setup, so we'll just die.
// In a real app, you'd have a proper installer.
die("DB connection failed: " . $e->getMessage());
}
}
return $pdo;
}

228
index.php
View File

@ -1,86 +1,150 @@
<?php
$pageTitle = "Home";
include 'partials/header.php';
declare(strict_types=1);
@ini_set('display_errors', '1');
@error_reporting(E_ALL);
@date_default_timezone_set('UTC');
$phpVersion = PHP_VERSION;
$now = date('Y-m-d H:i:s');
?>
<section class="hero text-center">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-9">
<h1 class="display-3 mb-3">Build Your Web App in Minutes, Not Months</h1>
<p class="lead mb-4">Describe your vision. Our AI generates the full-stack code, from frontend to database. You own it all.</p>
<a href="register.php" class="btn btn-primary btn-lg">Start Building for Free</a>
<a href="#features" class="btn btn-secondary btn-lg">Explore Features</a>
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>New Style</title>
<?php
// Read project preview data from environment
$projectDescription = $_SERVER['PROJECT_DESCRIPTION'] ?? '';
$projectImageUrl = $_SERVER['PROJECT_IMAGE_URL'] ?? '';
?>
<?php if ($projectDescription): ?>
<!-- Meta description -->
<meta name="description" content='<?= htmlspecialchars($projectDescription) ?>' />
<!-- Open Graph meta tags -->
<meta property="og:description" content="<?= htmlspecialchars($projectDescription) ?>" />
<!-- Twitter meta tags -->
<meta property="twitter:description" content="<?= htmlspecialchars($projectDescription) ?>" />
<?php endif; ?>
<?php if ($projectImageUrl): ?>
<!-- Open Graph image -->
<meta property="og:image" content="<?= htmlspecialchars($projectImageUrl) ?>" />
<!-- Twitter image -->
<meta property="twitter:image" content="<?= htmlspecialchars($projectImageUrl) ?>" />
<?php endif; ?>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap" rel="stylesheet">
<style>
:root {
--bg-color-start: #6a11cb;
--bg-color-end: #2575fc;
--text-color: #ffffff;
--card-bg-color: rgba(255, 255, 255, 0.01);
--card-border-color: rgba(255, 255, 255, 0.1);
}
body {
margin: 0;
font-family: 'Inter', sans-serif;
background: linear-gradient(45deg, var(--bg-color-start), var(--bg-color-end));
color: var(--text-color);
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
text-align: center;
overflow: hidden;
position: relative;
}
body::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path d="M-10 10L110 10M10 -10L10 110" stroke-width="1" stroke="rgba(255,255,255,0.05)"/></svg>');
animation: bg-pan 20s linear infinite;
z-index: -1;
}
@keyframes bg-pan {
0% { background-position: 0% 0%; }
100% { background-position: 100% 100%; }
}
main {
padding: 2rem;
}
.card {
background: var(--card-bg-color);
border: 1px solid var(--card-border-color);
border-radius: 16px;
padding: 2rem;
backdrop-filter: blur(20px);
-webkit-backdrop-filter: blur(20px);
box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
}
.loader {
margin: 1.25rem auto 1.25rem;
width: 48px;
height: 48px;
border: 3px solid rgba(255, 255, 255, 0.25);
border-top-color: #fff;
border-radius: 50%;
animation: spin 1s linear infinite;
}
@keyframes spin {
from { transform: rotate(0deg); }
to { transform: rotate(360deg); }
}
.hint {
opacity: 0.9;
}
.sr-only {
position: absolute;
width: 1px; height: 1px;
padding: 0; margin: -1px;
overflow: hidden;
clip: rect(0, 0, 0, 0);
white-space: nowrap; border: 0;
}
h1 {
font-size: 3rem;
font-weight: 700;
margin: 0 0 1rem;
letter-spacing: -1px;
}
p {
margin: 0.5rem 0;
font-size: 1.1rem;
}
code {
background: rgba(0,0,0,0.2);
padding: 2px 6px;
border-radius: 4px;
font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}
footer {
position: absolute;
bottom: 1rem;
font-size: 0.8rem;
opacity: 0.7;
}
</style>
</head>
<body>
<main>
<div class="card">
<h1>Analyzing your requirements and generating your website…</h1>
<div class="loader" role="status" aria-live="polite" aria-label="Applying initial changes">
<span class="sr-only">Loading…</span>
</div>
<p class="hint"><?= ($_SERVER['HTTP_HOST'] ?? '') === 'appwizzy.com' ? 'AppWizzy' : 'Flatlogic' ?> AI is collecting your requirements and applying the first changes.</p>
<p class="hint">This page will update automatically as the plan is implemented.</p>
<p>Runtime: PHP <code><?= htmlspecialchars($phpVersion) ?></code> — UTC <code><?= htmlspecialchars($now) ?></code></p>
</div>
<div class="row justify-content-center mt-5">
<div class="col-lg-10">
<img src="https://picsum.photos/seed/hero/1200/800" class="img-fluid rounded-3 shadow-lg" alt="Abstract visualization of an AI generating a web application interface.">
</div>
</div>
</div>
</section>
<section id="features" class="section">
<div class="container">
<div class="text-center mb-5">
<h2 class="h1">The Future of Application Development</h2>
<p class="lead text-muted">Go from idea to deployment at lightspeed.</p>
</div>
<div class="row g-4">
<div class="col-md-6 col-lg-4">
<div class="feature-card">
<img src="https://picsum.photos/seed/feature1/600/400" class="img-fluid rounded mb-3" alt="A developer selecting a technology stack from a list of logos.">
<h3>AI-Powered Generation</h3>
<p>Use plain text, voice commands, or even screenshots. Our AI understands your requirements and generates a complete application, including UI, logic, and database schema.</p>
</div>
</div>
<div class="col-md-6 col-lg-4">
<div class="feature-card">
<img src="https://picsum.photos/seed/feature2/600/400" class="img-fluid rounded mb-3" alt="A visual database schema builder with tables and relationships.">
<h3>Visual Schema Builder</h3>
<p>Design your data model with an intuitive drag-and-drop interface. Create tables, define fields, and establish relationships without writing a single line of SQL.</p>
</div>
</div>
<div class="col-md-6 col-lg-4">
<div class="feature-card">
<img src="https://picsum.photos/seed/feature3/600/400" class="img-fluid rounded mb-3" alt="Source code editor showing generated React and Node.js code.">
<h3>Full Source Code Ownership</h3>
<p>Download the complete source code for your application. No vendor lock-in. Push it to your GitHub, customize it, and host it wherever you want. You have total control.</p>
</div>
</div>
</div>
</div>
</section>
<section id="contact" class="section contact-section">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-7">
<div class="text-center mb-5">
<h2 class="h1">Have Questions?</h2>
<p class="lead text-muted">Get in touch with our team to learn more about our platform or to discuss enterprise needs.</p>
</div>
<form id="contactForm" novalidate>
<div class="mb-3">
<label for="name" class="form-label">Full Name</label>
<input type="text" class="form-control" id="name" name="name" required>
</div>
<div class="mb-3">
<label for="email" class="form-label">Email Address</label>
<input type="email" class="form-control" id="email" name="email" required>
</div>
<div class="mb-3">
<label for="message" class="form-label">Message</label>
<textarea class="form-control" id="message" name="message" rows="5" required></textarea>
</div>
<div class="text-center">
<button type="submit" class="btn btn-primary btn-lg">Send Message</button>
</div>
</form>
</div>
</div>
</div>
</section>
<?php include 'partials/footer.php'; ?>
</main>
<footer>
Page updated: <?= htmlspecialchars($now) ?> (UTC)
</footer>
</body>
</html>

View File

@ -1,88 +0,0 @@
<?php
require_once 'db/config.php';
session_start();
if (isset($_SESSION['user_id'])) {
header("Location: dashboard.php");
exit();
}
$errors = [];
if ($_SERVER["REQUEST_METHOD"] == "POST") {
$email = trim($_POST['email']);
$password = $_POST['password'];
if (empty($email) || !filter_var($email, FILTER_VALIDATE_EMAIL)) {
$errors[] = 'A valid email is required.';
}
if (empty($password)) {
$errors[] = 'Password is required.';
}
if (empty($errors)) {
try {
$pdo = db();
$stmt = $pdo->prepare("SELECT * FROM users WHERE email = ?");
$stmt->execute([$email]);
$user = $stmt->fetch();
if ($user && password_verify($password, $user['password'])) {
$_SESSION['user_id'] = $user['id'];
$_SESSION['user_name'] = $user['name'];
$_SESSION['user_email'] = $user['email'];
$_SESSION['user_role'] = $user['role'];
header("Location: dashboard.php");
exit();
} else {
$errors[] = 'Invalid email or password.';
}
} catch (PDOException $e) {
$errors[] = "Database error: " . $e->getMessage();
}
}
}
$pageTitle = "Login";
include 'partials/header.php';
?>
<div class="container my-5">
<div class="row justify-content-center">
<div class="col-lg-5">
<div class="card shadow-lg">
<div class="card-body p-5">
<h1 class="h3 fw-bold text-center mb-4">Log In to Your Account</h1>
<?php if (!empty($errors)):
?>
<div class="alert alert-danger">
<?php foreach ($errors as $error): ?>
<p class="mb-0"><?php echo htmlspecialchars($error); ?></p>
<?php endforeach; ?>
</div>
<?php endif; ?>
<form action="login.php" method="POST" novalidate>
<div class="mb-3">
<label for="email" class="form-label">Email Address</label>
<input type="email" class="form-control" id="email" name="email" required value="<?php echo isset($_POST['email']) ? htmlspecialchars($_POST['email']) : 'admin'; ?>">
</div>
<div class="mb-3">
<label for="password" class="form-label">Password</label>
<input type="password" class="form-control" id="password" name="password" required value="<?php echo isset($_POST['password']) ? '' : 'admin123'; ?>">
</div>
<div class="d-grid">
<button type="submit" class="btn btn-primary btn-lg">Login</button>
</div>
</form>
<div class="text-center mt-4">
<p class="mb-0">Don't have an account? <a href="register.php">Register here</a>.</p>
</div>
</div>
</div>
</div>
</div>
</div>
<?php include 'partials/footer.php'; ?>

View File

@ -1,22 +0,0 @@
<?php
session_start();
// Unset all of the session variables.
$_SESSION = [];
// If it's desired to kill the session, also delete the session cookie.
// Note: This will destroy the session, and not just the session data!
if (ini_get("session.use_cookies")) {
$params = session_get_cookie_params();
setcookie(session_name(), '', time() - 42000,
$params["path"], $params["domain"],
$params["secure"], $params["httponly"]
);
}
// Finally, destroy the session.
session_destroy();
// Redirect to the homepage.
header("Location: index.php");
exit();

View File

@ -1,41 +0,0 @@
</main>
<footer class="footer-main bg-light py-5 mt-auto">
<div class="container">
<div class="row">
<div class="col-md-6 mb-3 mb-md-0">
<h5 class="fw-bold">AI Web App Generator</h5>
<p class="text-muted">Create, customize, and deploy full-stack web applications using the power of AI.</p>
</div>
<div class="col-md-3 col-6">
<h6 class="text-uppercase fw-bold">Links</h6>
<ul class="list-unstyled">
<li><a href="index.php#features" class="text-muted text-decoration-none">Features</a></li>
<li><a href="privacy.php" class="text-muted text-decoration-none">Privacy Policy</a></li>
<li><a href="index.php#contact" class="text-muted text-decoration-none">Contact</a></li>
</ul>
</div>
<div class="col-md-3 col-6">
<h6 class="text-uppercase fw-bold">Account</h6>
<ul class="list-unstyled">
<?php if (isset($_SESSION['user_id'])): ?>
<li><a href="dashboard.php" class="text-muted text-decoration-none">Dashboard</a></li>
<li><a href="logout.php" class="text-muted text-decoration-none">Logout</a></li>
<?php else: ?>
<li><a href="login.php" class="text-muted text-decoration-none">Login</a></li>
<li><a href="register.php" class="text-muted text-decoration-none">Register</a></li>
<?php endif; ?>
</ul>
</div>
</div>
<hr class="my-4">
<div class="text-center text-muted">
<p>&copy; <?php echo date("Y"); ?> AI Web App Generator. All rights reserved.</p>
</div>
</div>
</footer>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"></script>
<script src="assets/js/main.js?v=<?php echo time(); ?>"></script>
</body>
</html>

View File

@ -1,56 +0,0 @@
<?php
if (session_status() === PHP_SESSION_NONE) {
session_start();
}
?><!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title><?php echo isset($pageTitle) ? htmlspecialchars($pageTitle) . ' - ' : ''; ?>AI Web App Generator</title>
<meta name="description" content="Generate full-stack web applications from a text prompt.">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="assets/css/custom.css?v=<?php echo time(); ?>">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&family=Georgia:wght@700&display=swap" rel="stylesheet">
</head>
<body>
<header class="header-main sticky-top">
<nav class="navbar navbar-expand-lg">
<div class="container">
<a class="navbar-brand" href="index.php">AI Web App Generator</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav ms-auto align-items-center">
<li class="nav-item">
<a class="nav-link" href="index.php#features">Features</a>
</li>
<li class="nav-item">
<a class="nav-link" href="index.php#contact">Contact</a>
</li>
<?php if (isset($_SESSION['user_id'])): ?>
<li class="nav-item">
<a class="nav-link" href="dashboard.php">Dashboard</a>
</li>
<li class="nav-item">
<a href="logout.php" class="btn btn-outline-secondary ms-2">Logout</a>
</li>
<?php else: ?>
<li class="nav-item">
<a class="nav-link" href="login.php">Login</a>
</li>
<li class="nav-item">
<a href="register.php" class="btn btn-primary ms-2">Register</a>
</li>
<?php endif; ?>
</ul>
</div>
</div>
</nav>
</header>
<main>

View File

@ -1,35 +0,0 @@
<?php
$pageTitle = "Privacy Policy";
include 'partials/header.php';
?>
<div class="container my-5">
<div class="row justify-content-center">
<div class="col-lg-8">
<h1 class="fw-bold mb-4">Privacy Policy</h1>
<p class="text-muted">Last updated: <?php echo date("F j, Y"); ?></p>
<p>This page is under construction. A full privacy policy will be available here soon.</p>
<h2 class="h4 mt-5">1. Information We Collect</h2>
<p>We will detail the information we collect, such as personal data provided during registration (name, email) and data collected automatically (IP address, browser type).</p>
<h2 class="h4 mt-4">2. How We Use Your Information</h2>
<p>We will explain how we use the collected data, for purposes like providing and improving our service, communicating with users, and ensuring security.</p>
<h2 class="h4 mt-4">3. Data Sharing and Disclosure</h2>
<p>We will clarify the circumstances under which user data might be shared with third parties, such as service providers or for legal reasons.</p>
<h2 class="h4 mt-4">4. Data Security</h2>
<p>We will describe the measures we take to protect user data from unauthorized access or disclosure.</p>
<h2 class="h4 mt-4">5. Your Rights</h2>
<p>We will outline the rights users have regarding their data, such as accessing, correcting, or deleting their personal information.</p>
<h2 class="h4 mt-4">Contact Us</h2>
<p>If you have any questions about this Privacy Policy, you can contact us via the <a href="index.php#contact">contact form</a>.</p>
</div>
</div>
</div>
<?php include 'partials/footer.php'; ?>

View File

@ -1,105 +0,0 @@
<?php
require_once 'db/config.php';
require_once 'mail/MailService.php';
session_start();
if (isset($_SESSION['user_id'])) {
header("Location: dashboard.php");
exit();
}
$errors = [];
$success = '';
if ($_SERVER["REQUEST_METHOD"] == "POST") {
$name = trim($_POST['name']);
$email = trim($_POST['email']);
$password = $_POST['password'];
if (empty($name)) {
$errors[] = 'Name is required.';
}
if (empty($email) || !filter_var($email, FILTER_VALIDATE_EMAIL)) {
$errors[] = 'A valid email is required.';
}
if (empty($password) || strlen($password) < 8) {
$errors[] = 'Password must be at least 8 characters long.';
}
if (empty($errors)) {
try {
$pdo = db();
$stmt = $pdo->prepare("SELECT id FROM users WHERE email = ?");
$stmt->execute([$email]);
if ($stmt->fetch()) {
$errors[] = 'An account with this email already exists.';
} else {
$hashed_password = password_hash($password, PASSWORD_DEFAULT);
$stmt = $pdo->prepare("INSERT INTO users (name, email, password) VALUES (?, ?, ?)");
$stmt->execute([$name, $email, $hashed_password]);
// Send welcome email
$subject = "Welcome to AI Web App Generator!";
$htmlBody = "<h1>Welcome, {$name}!</h1><p>Thank you for registering. You can now log in and start creating your web application.</p>";
$textBody = "Welcome, {$name}! Thank you for registering. You can now log in and start creating your web application.";
MailService::sendMail($email, $subject, $htmlBody, $textBody);
$success = 'Registration successful! You can now <a href="login.php">log in</a>.';
}
} catch (PDOException $e) {
$errors[] = "Database error: " . $e->getMessage();
}
}
}
$pageTitle = "Register";
include 'partials/header.php';
?>
<div class="container my-5">
<div class="row justify-content-center">
<div class="col-lg-6">
<div class="card shadow-lg">
<div class="card-body p-5">
<h1 class="h3 fw-bold text-center mb-4">Create Your Account</h1>
<?php if (!empty($errors)): ?>
<div class="alert alert-danger">
<?php foreach ($errors as $error): ?>
<p class="mb-0"><?php echo htmlspecialchars($error); ?></p>
<?php endforeach; ?>
</div>
<?php endif; ?>
<?php if ($success): ?>
<div class="alert alert-success">
<p class="mb-0"><?php echo $success; ?></p>
</div>
<?php else: ?>
<form action="register.php" method="POST" novalidate>
<div class="mb-3">
<label for="name" class="form-label">Full Name</label>
<input type="text" class="form-control" id="name" name="name" required>
</div>
<div class="mb-3">
<label for="email" class="form-label">Email Address</label>
<input type="email" class="form-control" id="email" name="email" required>
</div>
<div class="mb-3">
<label for="password" class="form-label">Password</label>
<input type="password" class="form-control" id="password" name="password" required>
<div class="form-text">Password must be at least 8 characters long.</div>
</div>
<div class="d-grid">
<button type="submit" class="btn btn-primary btn-lg">Register</button>
</div>
</form>
<?php endif; ?>
</div>
</div>
</div>
</div>
</div>
<?php include 'partials/footer.php'; ?>