Compare commits
No commits in common. "ai-dev" and "master" have entirely different histories.
@ -1 +0,0 @@
|
||||
/* Custom CSS will go here */
|
||||
@ -1 +0,0 @@
|
||||
// Custom JS will go here
|
||||
42
contact.php
42
contact.php
@ -1,42 +0,0 @@
|
||||
<?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;
|
||||
}
|
||||
316
index.php
316
index.php
@ -1,180 +1,150 @@
|
||||
<?php
|
||||
session_start();
|
||||
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');
|
||||
?>
|
||||
<!DOCTYPE html>
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<meta name="description" content="The official landing page for the Colour Trading App.">
|
||||
<title>Colour Trading App</title>
|
||||
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet">
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
|
||||
<link rel="stylesheet" href="assets/css/custom.css?v=<?php echo time(); ?>">
|
||||
<style>
|
||||
:root {
|
||||
--primary-color: #0D6EFD;
|
||||
--secondary-color: #6C757D;
|
||||
--background-color: #FFFFFF;
|
||||
--surface-color: #F8F9FA;
|
||||
--accent-gradient: linear-gradient(45deg, #f3ec78, #af4261);
|
||||
}
|
||||
body {
|
||||
font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
|
||||
}
|
||||
.hero {
|
||||
background: var(--surface-color);
|
||||
padding: 6rem 0;
|
||||
}
|
||||
.hero h1 {
|
||||
font-size: 3.5rem;
|
||||
font-weight: bold;
|
||||
}
|
||||
.hero .lead {
|
||||
font-size: 1.25rem;
|
||||
color: var(--secondary-color);
|
||||
}
|
||||
.btn-primary {
|
||||
background-color: var(--primary-color);
|
||||
border: none;
|
||||
}
|
||||
.section {
|
||||
padding: 4rem 0;
|
||||
}
|
||||
.section-title {
|
||||
font-weight: bold;
|
||||
margin-bottom: 3rem;
|
||||
}
|
||||
.feature-icon {
|
||||
font-size: 3rem;
|
||||
background: var(--accent-gradient);
|
||||
-webkit-background-clip: text;
|
||||
-webkit-text-fill-color: transparent;
|
||||
}
|
||||
.testimonial-card {
|
||||
background: var(--surface-color);
|
||||
border: none;
|
||||
}
|
||||
footer {
|
||||
background: var(--surface-color);
|
||||
}
|
||||
</style>
|
||||
<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>
|
||||
|
||||
<header class="py-3 mb-4 border-bottom">
|
||||
<div class="container d-flex flex-wrap justify-content-center">
|
||||
<a href="/" class="d-flex align-items-center mb-3 mb-md-0 me-md-auto text-dark text-decoration-none">
|
||||
<i class="bi bi-palette-fill me-2" style="font-size: 2rem; color: var(--primary-color);"></i>
|
||||
<span class="fs-4">Colour Trading</span>
|
||||
</a>
|
||||
<ul class="nav nav-pills">
|
||||
<li class="nav-item"><a href="#features" class="nav-link">Features</a></li>
|
||||
<li class="nav-item"><a href="#contact" class="nav-link">Contact</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
<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">© <?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>
|
||||
<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>
|
||||
</main>
|
||||
<footer>
|
||||
Page updated: <?= htmlspecialchars($now) ?> (UTC)
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
||||
</html>
|
||||
|
||||
19
privacy.php
19
privacy.php
@ -1,19 +0,0 @@
|
||||
<!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
17
sitemap.xml
@ -1,17 +0,0 @@
|
||||
<?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>
|
||||
Loading…
x
Reference in New Issue
Block a user