This commit is contained in:
Flatlogic Bot 2025-10-09 14:32:07 +00:00
parent 258aa65054
commit 4df3899341
6 changed files with 253 additions and 143 deletions

1
assets/css/custom.css Normal file
View File

@ -0,0 +1 @@
/* Custom CSS will go here */

1
assets/js/main.js Normal file
View File

@ -0,0 +1 @@
// Custom JS will go here

42
contact.php Normal file
View File

@ -0,0 +1,42 @@
<?php
session_start();
if ($_SERVER["REQUEST_METHOD"] == "POST") {
// Include MailService
require_once __DIR__ . '/mail/MailService.php';
// Get form data
$name = filter_var(trim($_POST["name"]), FILTER_SANITIZE_STRING);
$email = filter_var(trim($_POST["email"]), FILTER_SANITIZE_EMAIL);
$message = filter_var(trim($_POST["message"]), FILTER_SANITIZE_STRING);
// Validate form data
if (empty($name) || empty($email) || empty($message) || !filter_var($email, FILTER_VALIDATE_EMAIL)) {
// Set error message and redirect
$_SESSION['contact_form_status'] = 'error';
header("Location: index.php#contact");
exit;
}
// Send email
$to = getenv('MAIL_TO') ?: 'admin@example.com'; // Fallback email
$subject = "New Contact Form Submission from " . $name;
$res = MailService::sendContactMessage($name, $email, $message, $to, $subject);
if (!empty($res['success'])) {
// Set success message and redirect
$_SESSION['contact_form_status'] = 'success';
} else {
// Set error message and redirect
$_SESSION['contact_form_status'] = 'error';
// Optionally log the error: error_log($res['error']);
}
header("Location: index.php#contact");
exit;
} else {
// If not a POST request, redirect to home
header("Location: index.php");
exit;
}

314
index.php
View File

@ -1,150 +1,180 @@
<?php <?php
declare(strict_types=1); session_start();
@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');
?> ?>
<!doctype html> <!DOCTYPE html>
<html lang="en"> <html lang="en">
<head> <head>
<meta charset="utf-8" /> <meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1" /> <meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>New Style</title> <meta name="description" content="The official landing page for the Colour Trading App.">
<?php <title>Colour Trading App</title>
// Read project preview data from environment <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet">
$projectDescription = $_SERVER['PROJECT_DESCRIPTION'] ?? ''; <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
$projectImageUrl = $_SERVER['PROJECT_IMAGE_URL'] ?? ''; <link rel="stylesheet" href="assets/css/custom.css?v=<?php echo time(); ?>">
?> <style>
<?php if ($projectDescription): ?> :root {
<!-- Meta description --> --primary-color: #0D6EFD;
<meta name="description" content='<?= htmlspecialchars($projectDescription) ?>' /> --secondary-color: #6C757D;
<!-- Open Graph meta tags --> --background-color: #FFFFFF;
<meta property="og:description" content="<?= htmlspecialchars($projectDescription) ?>" /> --surface-color: #F8F9FA;
<!-- Twitter meta tags --> --accent-gradient: linear-gradient(45deg, #f3ec78, #af4261);
<meta property="twitter:description" content="<?= htmlspecialchars($projectDescription) ?>" /> }
<?php endif; ?> body {
<?php if ($projectImageUrl): ?> font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
<!-- Open Graph image --> }
<meta property="og:image" content="<?= htmlspecialchars($projectImageUrl) ?>" /> .hero {
<!-- Twitter image --> background: var(--surface-color);
<meta property="twitter:image" content="<?= htmlspecialchars($projectImageUrl) ?>" /> padding: 6rem 0;
<?php endif; ?> }
<link rel="preconnect" href="https://fonts.googleapis.com"> .hero h1 {
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> font-size: 3.5rem;
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap" rel="stylesheet"> font-weight: bold;
<style> }
:root { .hero .lead {
--bg-color-start: #6a11cb; font-size: 1.25rem;
--bg-color-end: #2575fc; color: var(--secondary-color);
--text-color: #ffffff; }
--card-bg-color: rgba(255, 255, 255, 0.01); .btn-primary {
--card-border-color: rgba(255, 255, 255, 0.1); background-color: var(--primary-color);
} border: none;
body { }
margin: 0; .section {
font-family: 'Inter', sans-serif; padding: 4rem 0;
background: linear-gradient(45deg, var(--bg-color-start), var(--bg-color-end)); }
color: var(--text-color); .section-title {
display: flex; font-weight: bold;
justify-content: center; margin-bottom: 3rem;
align-items: center; }
min-height: 100vh; .feature-icon {
text-align: center; font-size: 3rem;
overflow: hidden; background: var(--accent-gradient);
position: relative; -webkit-background-clip: text;
} -webkit-text-fill-color: transparent;
body::before { }
content: ''; .testimonial-card {
position: absolute; background: var(--surface-color);
top: 0; border: none;
left: 0; }
width: 100%; footer {
height: 100%; background: var(--surface-color);
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; </style>
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> </head>
<body> <body>
<main>
<div class="card"> <header class="py-3 mb-4 border-bottom">
<h1>Analyzing your requirements and generating your website…</h1> <div class="container d-flex flex-wrap justify-content-center">
<div class="loader" role="status" aria-live="polite" aria-label="Applying initial changes"> <a href="/" class="d-flex align-items-center mb-3 mb-md-0 me-md-auto text-dark text-decoration-none">
<span class="sr-only">Loading…</span> <i class="bi bi-palette-fill me-2" style="font-size: 2rem; color: var(--primary-color);"></i>
</div> <span class="fs-4">Colour Trading</span>
<p class="hint"><?= ($_SERVER['HTTP_HOST'] ?? '') === 'appwizzy.com' ? 'AppWizzy' : 'Flatlogic' ?> AI is collecting your requirements and applying the first changes.</p> </a>
<p class="hint">This page will update automatically as the plan is implemented.</p> <ul class="nav nav-pills">
<p>Runtime: PHP <code><?= htmlspecialchars($phpVersion) ?></code> — UTC <code><?= htmlspecialchars($now) ?></code></p> <li class="nav-item"><a href="#features" class="nav-link">Features</a></li>
</div> <li class="nav-item"><a href="#contact" class="nav-link">Contact</a></li>
</main> </ul>
<footer> </div>
Page updated: <?= htmlspecialchars($now) ?> (UTC) </header>
</footer>
<main>
<section class="hero text-center">
<div class="container">
<h1 class="display-4">The Future of Colour Trading is Here</h1>
<p class="lead my-4">A revolutionary platform for buyers and sellers of fine colours.</p>
<a href="#contact" class="btn btn-primary btn-lg">Get Started</a>
</div>
</section>
<section id="about" class="section">
<div class="container">
<h2 class="section-title text-center">About Us</h2>
<p class="text-center col-md-8 mx-auto">We are dedicated to creating a vibrant marketplace for colour enthusiasts, professionals, and traders. Our platform provides the tools and resources to discover, trade, and manage colours with ease.</p>
</div>
</section>
<section id="features" class="section bg-light">
<div class="container">
<h2 class="section-title text-center">Features</h2>
<div class="row g-4">
<div class="col-md-4 text-center">
<div class="feature-icon mb-3"><i class="bi bi-search"></i></div>
<h5>Browse & Search</h5>
<p>Easily search and filter through a vast catalog of colours.</p>
</div>
<div class="col-md-4 text-center">
<div class="feature-icon mb-3"><i class="bi bi-cart-check"></i></div>
<h5>Seamless Trading</h5>
<p>Buy and sell colours with a simple and secure transaction process.</p>
</div>
<div class="col-md-4 text-center">
<div class="feature-icon mb-3"><i class="bi bi-bar-chart-line"></i></div>
<h5>Admin Dashboard</h5>
<p>Manage your inventory, orders, and users with a powerful admin panel.</p>
</div>
</div>
</div>
</section>
<section id="testimonials" class="section">
<div class="container">
<h2 class="section-title text-center">What Our Users Say</h2>
<div class="row">
<div class="col-md-6 col-lg-4 mx-auto">
<div class="card testimonial-card p-4">
<blockquote class="blockquote mb-0">
<p>"This platform has revolutionized how I source colours for my projects. A game-changer!"</p>
<footer class="blockquote-footer">Jane Doe, <cite title="Source Title">Designer</cite></footer>
</blockquote>
</div>
</div>
</div>
</div>
</section>
<section id="contact" class="section bg-light">
<div class="container">
<h2 class="section-title text-center">Contact Us</h2>
<div class="col-md-8 col-lg-6 mx-auto">
<?php if (isset($_SESSION['contact_form_status'])): ?>
<div class="alert alert-<?php echo $_SESSION['contact_form_status'] == 'success' ? 'success' : 'danger'; ?> alert-dismissible fade show" role="alert">
<?php
if ($_SESSION['contact_form_status'] == 'success') {
echo "Thank you for your message! We will get back to you shortly.";
} else {
echo "There was an error sending your message. Please try again.";
}
unset($_SESSION['contact_form_status']);
?>
<button type="button" class="btn-close" data-bs-dismiss="alert" aria-label="Close"></button>
</div>
<?php endif; ?>
<form action="contact.php" method="POST">
<div class="mb-3">
<label for="name" class="form-label">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>
<button type="submit" class="btn btn-primary w-100">Send Message</button>
</form>
</div>
</div>
</section>
</main>
<footer class="py-4 mt-auto">
<div class="container text-center">
<p class="mb-0">&copy; <?php echo date("Y"); ?> Colour Trading App. All Rights Reserved.</p>
<p><a href="privacy.php">Privacy Policy</a></p>
</div>
</footer>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js"></script>
<script src="assets/js/main.js?v=<?php echo time(); ?>"></script>
</body> </body>
</html> </html>

19
privacy.php Normal file
View File

@ -0,0 +1,19 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Privacy Policy</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet">
</head>
<body>
<div class="container mt-5">
<h1>Privacy Policy</h1>
<p>This is a placeholder for your privacy policy. You should replace this with your own policy.</p>
<p>Information we collect...</p>
<p>How we use information...</p>
<p>etc...</p>
<a href="index.php">Back to Home</a>
</div>
</body>
</html>

17
sitemap.xml Normal file
View File

@ -0,0 +1,17 @@
<?xml version="1.0" encoding="UTF-8"?>
<urlset
xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9
http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd">
<url>
<loc>https://yourdomain.com/index.php</loc>
<lastmod>2025-10-09T00:00:00+00:00</lastmod>
<priority>1.00</priority>
</url>
<url>
<loc>https://yourdomain.com/privacy.php</loc>
<lastmod>2025-10-09T00:00:00+00:00</lastmod>
<priority>0.80</priority>
</url>
</urlset>