This commit is contained in:
Flatlogic Bot 2025-11-23 21:35:27 +00:00
parent b609d93f77
commit 33d80b482d
6 changed files with 369 additions and 141 deletions

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

@ -0,0 +1,76 @@
/* General Body & Typography */
body {
font-family: 'Vazirmatn', 'Roboto', sans-serif;
background-color: #F5F5F5;
color: #333333;
direction: ltr; /* Default LTR, will be overridden for RTL */
}
h1, h2, h3, h4, h5, h6 {
font-weight: 700;
}
.btn-primary {
background: linear-gradient(45deg, #FF4500, #FF6347);
border: none;
padding: 0.75rem 1.5rem;
font-weight: 700;
border-radius: 0.5rem;
transition: transform 0.2s ease-in-out;
}
.btn-primary:hover {
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
/* Navbar */
.navbar {
background-color: #FFFFFF;
box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
.navbar-brand {
font-weight: 700;
color: #1A1A1A !important;
}
/* Hero Section */
.hero {
padding: 6rem 0;
background-color: #FFFFFF;
text-align: center;
}
.hero h1 {
font-size: 3.5rem;
color: #1A1A1A;
}
.hero p {
font-size: 1.25rem;
color: #555;
margin-bottom: 2rem;
}
/* Features Section */
.features {
padding: 4rem 0;
}
.feature-icon {
font-size: 3rem;
color: #FF4500;
}
/* Footer */
footer {
padding: 2rem 0;
background-color: #1A1A1A;
color: #F5F5F5;
}
/* RTL Support */
[dir="rtl"] {
font-family: 'Vazirmatn', sans-serif;
}

91
create-plan.php Normal file
View File

@ -0,0 +1,91 @@
<?php
$success_message = '';
if ($_SERVER["REQUEST_METHOD"] == "POST") {
require_once 'db/config.php';
$name = $_POST['planName'] ?? '';
$description = $_POST['planDescription'] ?? '';
if (!empty($name)) {
try {
$pdo = db();
$stmt = $pdo->prepare("INSERT INTO plans (name, description) VALUES (?, ?)");
$stmt->execute([$name, $description]);
$success_message = '<div class="alert alert-success mt-3">Plan created successfully! <a href="plans.php">View all plans</a>.</div>';
} catch (PDOException $e) {
$success_message = '<div class="alert alert-danger mt-3">Error: ' . $e->getMessage() . '</div>';
}
} else {
$success_message = '<div class="alert alert-warning mt-3">Plan name is required.</div>';
}
}
?>
<!doctype html>
<html lang="en" dir="rtl">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>ساختن برنامه - FitGen</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.rtl.min.css" rel="stylesheet">
<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=Roboto:wght@400;700&family=Vazirmatn:wght@400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="assets/css/custom.css">
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-light">
<div class="container">
<a class="navbar-brand" href="index.php">FitGen</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">
<li class="nav-item">
<a class="nav-link" href="index.php#features">ویژگی‌ها</a>
</li>
<li class="nav-item">
<a class="nav-link" href="plans.php">برنامه‌ها</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">ورزشکاران</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">تمرینات</a>
</li>
</ul>
</div>
</div>
</nav>
<main class="container mt-5">
<div class="row justify-content-center">
<div class="col-md-8">
<div class="card p-4" style="border-radius: 0.5rem;">
<h1 class="text-center mb-4">ساختن برنامه تمرینی جدید</h1>
<?php echo $success_message; ?>
<form method="POST" action="create-plan.php">
<div class="mb-3">
<label for="planName" class="form-label">نام برنامه</label>
<input type="text" class="form-control" id="planName" name="planName" placeholder="مثال: فاز ۱ هایپرتروفی">
</div>
<div class="mb-3">
<label for="planDescription" class="form-label">توضیحات</label>
<textarea class="form-control" id="planDescription" name="planDescription" rows="5" placeholder="هدف و ساختار اصلی این برنامه را شرح دهید..."></textarea>
</div>
<div class="text-center">
<button type="submit" class="btn btn-primary">ذخیره برنامه</button>
</div>
</form>
</div>
</div>
</div>
</main>
<footer class="text-center mt-5">
<p>&copy; 2025 FitGen. تمام حقوق محفوظ است.</p>
</footer>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>

22
db/migrate.php Normal file
View File

@ -0,0 +1,22 @@
<?php
require_once __DIR__ . '/config.php';
try {
$pdo = db();
$migrationsDir = __DIR__ . '/migrations';
$files = glob($migrationsDir . '/*.sql');
sort($files);
foreach ($files as $file) {
echo "Running migration: " . basename($file) . "...\n";
$sql = file_get_contents($file);
$pdo->exec($sql);
echo "Success.\n";
}
echo "\nAll migrations completed successfully!\n";
} catch (PDOException $e) {
die("Database migration failed: " . $e->getMessage());
}

View File

@ -0,0 +1,7 @@
CREATE TABLE IF NOT EXISTS plans (
id INT AUTO_INCREMENT PRIMARY KEY,
name VARCHAR(255) NOT NULL,
description TEXT,
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP
);

228
index.php
View File

@ -1,150 +1,96 @@
<?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');
?>
<!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'] ?? '';
$projectDescription = $_SERVER['PROJECT_DESCRIPTION'] ?? 'Build Elite Fitness Plans, Faster.';
$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>
<!doctype html>
<html lang="fa" dir="rtl">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>FitGen - همراه نهایی شما در بدن‌سازی</title>
<?php if ($projectDescription): ?>
<meta name="description" content="<?= htmlspecialchars($projectDescription) ?>" />
<meta property="og:description" content="<?= htmlspecialchars($projectDescription) ?>" />
<meta property="twitter:description" content="<?= htmlspecialchars($projectDescription) ?>" />
<?php endif; ?>
<?php if ($projectImageUrl): ?>
<meta property="og:image" content="<?= htmlspecialchars($projectImageUrl) ?>" />
<meta property="twitter:image" content="<?= htmlspecialchars($projectImageUrl) ?>" />
<?php endif; ?>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.rtl.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="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&family=Vazirmatn:wght@400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="assets/css/custom.css?v=<?php echo time(); ?>">
</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>
</main>
<footer>
Page updated: <?= htmlspecialchars($now) ?> (UTC)
</footer>
<nav class="navbar navbar-expand-lg navbar-light">
<div class="container">
<a class="navbar-brand" href="#">FitGen</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">
<li class="nav-item">
<a class="nav-link" href="#features">ویژگی‌ها</a>
</li>
<li class="nav-item">
<a class="nav-link" href="plans.php">برنامه‌ها</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">ورزشکاران</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">تمرینات</a>
</li>
</ul>
</div>
</div>
</nav>
<header class="hero">
<div class="container">
<h1>برنامه‌های ورزشی حرفه‌ای بسازید، سریع‌تر.</h1>
<p class="lead">پلتفرم یکپارچه برای مربیان بدن‌سازی جهت ساخت، مدیریت و پیگیری پیشرفت ورزشکاران.</p>
<a href="create-plan.php" class="btn btn-primary btn-lg">شروع به ساختن</a>
</div>
</header>
<section id="features" class="features">
<div class="container">
<div class="row text-center">
<div class="col-md-4 mb-4">
<i class="bi bi-pencil-square feature-icon"></i>
<h3 class="mt-3">ساختن برنامه</h3>
<p>به راحتی برنامه‌های تمرینی دقیق را برای ورزشکاران خود بسازید و سفارشی کنید.</p>
</div>
<div class="col-md-4 mb-4">
<i class="bi bi-person-lines-fill feature-icon"></i>
<h3 class="mt-3">مدیریت ورزشکاران</h3>
<p>پروفایل‌های مشتریان خود را مدیریت کرده و سفر آن‌ها را در یک مکان پیگیری کنید.</p>
</div>
<div class="col-md-4 mb-4">
<i class="bi bi-graph-up-arrow feature-icon"></i>
<h3 class="mt-3">پیگیری پیشرفت</h3>
<p>پیشرفت ورزشکاران را با ابزارهای قدرتمند پیگیری و گزارش‌دهی به تصویر بکشید.</p>
</div>
</div>
</div>
</section>
<footer class="text-center">
<div class="container">
<p>&copy; 2025 FitGen. تمام حقوق محفوظ است.</p>
</div>
</footer>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>

86
plans.php Normal file
View File

@ -0,0 +1,86 @@
<?php
require_once 'db/config.php';
try {
$pdo = db();
$stmt = $pdo->query("SELECT id, name, description, created_at FROM plans ORDER BY created_at DESC");
$plans = $stmt->fetchAll();
} catch (PDOException $e) {
die("Error fetching plans: " . $e->getMessage());
}
?>
<!doctype html>
<html lang="fa" dir="rtl">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>برنامه‌های تمرینی - FitGen</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.rtl.min.css" rel="stylesheet">
<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=Roboto:wght@400;700&family=Vazirmatn:wght@400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="assets/css/custom.css">
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-light">
<div class="container">
<a class="navbar-brand" href="index.php">FitGen</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">
<li class="nav-item">
<a class="nav-link" href="index.php#features">ویژگی‌ها</a>
</li>
<li class="nav-item">
<a class="nav-link active" href="plans.php">برنامه‌ها</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">ورزشکاران</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">تمرینات</a>
</li>
</ul>
</div>
</div>
</nav>
<main class="container mt-5">
<div class="d-flex justify-content-between align-items-center mb-4">
<h1>برنامه‌های تمرینی</h1>
<a href="create-plan.php" class="btn btn-primary">ساختن برنامه جدید</a>
</div>
<div class="row">
<?php if (empty($plans)): ?>
<div class="col">
<div class="alert alert-info">هنوز هیچ برنامه‌ای ساخته نشده است.</div>
</div>
<?php else: ?>
<?php foreach ($plans as $plan): ?>
<div class="col-md-6 col-lg-4 mb-4">
<div class="card h-100">
<div class="card-body">
<h5 class="card-title"><?php echo htmlspecialchars($plan['name']); ?></h5>
<p class="card-text"><?php echo nl2br(htmlspecialchars($plan['description'])); ?></p>
</div>
<div class="card-footer text-muted">
<small>ساخته شده در: <?php echo date("Y-m-d", strtotime($plan['created_at'])); ?></small>
</div>
</div>
</div>
<?php endforeach; ?>
<?php endif; ?>
</div>
</main>
<footer class="text-center mt-5">
<p>&copy; 2025 FitGen. تمام حقوق محفوظ است.</p>
</footer>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>