35044-vm/index.php
Flatlogic Bot 3aad7fe5c1 1.0
2025-10-18 13:11:52 +00:00

179 lines
9.2 KiB
PHP

<?php
session_start();
$status = $_SESSION['status'] ?? null;
$message = $_SESSION['message'] ?? null;
unset($_SESSION['status']);
unset($_SESSION['message']);
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- SEO and Meta Tags -->
<title>Trading Bot - Automated Trading SaaS</title>
<meta name="description" content="Automate your TradingView strategies with our powerful and reliable trading bot SaaS. Backtest, deploy, and monitor your trades effortlessly.">
<meta name="keywords" content="trading bot, tradingview bot, automated trading, crypto trading bot, stock trading bot, saas trading platform, backtesting software, strategy marketplace, flatlogic generator, built with flatlogic">
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website">
<meta property="og:title" content="Trading Bot - Automated Trading SaaS">
<meta property="og:description" content="Automate your TradingView strategies with our powerful and reliable trading bot SaaS.">
<meta property="og:image" content="<?php echo htmlspecialchars($_SERVER['PROJECT_IMAGE_URL'] ?? ''); ?>">
<!-- Twitter -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="Trading Bot - Automated Trading SaaS">
<meta name="twitter:description" content="Automate your TradingView strategies with our powerful and reliable trading bot SaaS.">
<meta name="twitter:image" content="<?php echo htmlspecialchars($_SERVER['PROJECT_IMAGE_URL'] ?? ''); ?>">
<!-- Stylesheets -->
<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(); ?>">
</head>
<body>
<!-- Navigation -->
<nav class="navbar navbar-expand-lg navbar-light bg-white fixed-top shadow-sm">
<div class="container">
<a class="navbar-brand" href="#">TradingBot</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav">
<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="#about">About</a></li>
<li class="nav-item"><a class="nav-link" href="#features">Features</a></li>
<li class="nav-item"><a class="nav-link" href="#testimonials">Testimonials</a></li>
<li class="nav-item"><a class="nav-link" href="#contact">Contact</a></li>
<li class="nav-item"><a class="btn btn-outline-primary ms-lg-2" href="#">Login</a></li>
</ul>
</div>
</div>
</nav>
<!-- Hero Section -->
<header class="hero text-center">
<div class="container">
<h1>Automate Your Trading. Maximize Your Profits.</h1>
<p class="lead">Connect your TradingView strategies and let our bots do the work. Simple, powerful, and reliable automated trading.</p>
<a href="#" class="btn btn-primary btn-lg">Start Your 30-Day Free Trial</a>
</div>
</header>
<main>
<!-- About Section -->
<section id="about">
<div class="container">
<h2 class="section-title">Why Choose Us?</h2>
<div class="row align-items-center">
<div class="col-lg-6">
<h3>The Edge You Need in a Competitive Market</h3>
<p>Our platform is built for traders who demand speed, reliability, and control. We handle the complex infrastructure of automated trading so you can focus on what you do best: developing winning strategies. Stop missing trades and start executing your plan with precision, 24/7.</p>
</div>
<div class="col-lg-6 text-center">
<i class="bi bi-bar-chart-line-fill" style="font-size: 10rem; color: #17A2B8;"></i>
</div>
</div>
</div>
</section>
<!-- Features Section -->
<section id="features" class="bg-light">
<div class="container">
<h2 class="section-title">Powerful Features, Simple Interface</h2>
<div class="row g-4">
<div class="col-md-4">
<div class="feature-card h-100">
<div class="feature-icon"><i class="bi bi-robot"></i></div>
<h4>Automated Execution</h4>
<p>Connect TradingView alerts via webhooks for instant, automated trade execution on your favorite exchanges.</p>
</div>
</div>
<div class="col-md-4">
<div class="feature-card h-100">
<div class="feature-icon"><i class="bi bi-graph-up-arrow"></i></div>
<h4>Performance Analytics</h4>
<p>Track your bot's performance with a detailed dashboard, including P&L, win rate, and trade history.</p>
</div>
</div>
<div class="col-md-4">
<div class="feature-card h-100">
<div class="feature-icon"><i class="bi bi-shop"></i></div>
<h4>Strategy Marketplace</h4>
<p>Discover and subscribe to profitable strategies from top traders in our community marketplace.</p>
</div>
</div>
</div>
</div>
</section>
<!-- Testimonials Section -->
<section id="testimonials">
<div class="container">
<h2 class="section-title">What Our Traders Say</h2>
<div class="row g-4">
<div class="col-lg-6">
<div class="testimonial-card">
<blockquote>"This platform changed the game for me. I can finally sleep while my strategies are working. The reliability is top-notch."</blockquote>
<p class="author">- Alex R.</p>
</div>
</div>
<div class="col-lg-6">
<div class="testimonial-card">
<blockquote>"The setup was incredibly easy. I had my first bot running in under 15 minutes. Highly recommended for any serious trader."</blockquote>
<p class="author">- Sarah L.</p>
</div>
</div>
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="bg-light">
<div class="container">
<h2 class="section-title">Get In Touch</h2>
<div class="row justify-content-center">
<div class="col-lg-7">
<?php if ($status): ?>
<div class="alert alert-<?php echo $status === 'success' ? 'success' : 'danger'; ?> alert-dismissible fade show" role="alert">
<?php echo htmlspecialchars($message); ?>
<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>
</div>
</section>
</main>
<!-- Footer -->
<footer class="text-center">
<div class="container">
<p>&copy; <?php echo date("Y"); ?> TradingBot. All Rights Reserved.</p>
<p><a href="privacy.php">Privacy Policy</a></p>
</div>
</footer>
<!-- Scripts -->
<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>
</html>