102 lines
5.2 KiB
PHP
102 lines
5.2 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Sol Token LaunchLab</title>
|
|
<meta name="description" content="Launch your Solana-based meme coin with ease. Use our simple tools to create, manage, and grow your token project.">
|
|
<meta name="keywords" content="solana, meme coin, token launch, crypto, blockchain, token creator, flatlogic, sol token, launchpad">
|
|
<meta property="og:title" content="Sol Token LaunchLab">
|
|
<meta property="og:description" content="The simplest way to launch and manage your Solana meme coin.">
|
|
<meta property="og:image" content="<?php echo htmlspecialchars($_SERVER['PROJECT_IMAGE_URL'] ?? ''); ?>">
|
|
<meta name="twitter:card" content="summary_large_image">
|
|
<meta name="twitter:image" content="<?php echo htmlspecialchars($_SERVER['PROJECT_IMAGE_URL'] ?? ''); ?>">
|
|
|
|
<!-- Bootstrap CSS -->
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet">
|
|
<!-- Bootstrap Icons -->
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
|
|
<!-- Custom CSS -->
|
|
<link rel="stylesheet" href="assets/css/custom.css?v=<?php echo time(); ?>">
|
|
</head>
|
|
<body>
|
|
|
|
<!-- Navbar -->
|
|
<nav class="navbar navbar-expand-lg navbar-light bg-white shadow-sm sticky-top">
|
|
<div class="container">
|
|
<a class="navbar-brand" href="#">
|
|
<i class="bi bi-rocket-takeoff-fill" style="color: #512da8;"></i>
|
|
Sol LaunchLab
|
|
</a>
|
|
</div>
|
|
</nav>
|
|
|
|
<!-- Hero Section -->
|
|
<header class="hero">
|
|
<div class="container">
|
|
<h1>Launch Your Solana Meme Coin in Minutes</h1>
|
|
<p>No code, no hassle. Just your vision and our platform. Create the next big meme coin on the Solana blockchain today.</p>
|
|
<a href="#create-project" class="btn btn-primary btn-lg">Start Your Project Now</a>
|
|
</div>
|
|
</header>
|
|
|
|
<!-- Main Content -->
|
|
<main class="container">
|
|
<!-- Create Project Section -->
|
|
<section id="create-project">
|
|
<h2>Start Your Project</h2>
|
|
<div class="row justify-content-center">
|
|
<div class="col-lg-8">
|
|
<div class="card p-4 p-md-5">
|
|
<form id="projectForm" action="create_project.php" method="POST" class="needs-validation" novalidate>
|
|
<div class="mb-4">
|
|
<label for="project_name" class="form-label fs-5">Project Name</label>
|
|
<input type="text" class="form-control form-control-lg" id="project_name" name="project_name" placeholder="e.g., Galaxy Cat" required>
|
|
<div class="invalid-feedback">Please enter a project name.</div>
|
|
</div>
|
|
<div class="mb-4">
|
|
<label for="token_name" class="form-label fs-5">Token Name</label>
|
|
<input type="text" class="form-control form-control-lg" id="token_name" name="token_name" placeholder="e.g., GalaxyCat" required>
|
|
<div class="invalid-feedback">Please enter a token name.</div>
|
|
</div>
|
|
<div class="mb-4">
|
|
<label for="token_symbol" class="form-label fs-5">Token Symbol</label>
|
|
<input type="text" class="form-control form-control-lg" id="token_symbol" name="token_symbol" placeholder="e.g., GCT" required maxlength="10">
|
|
<div class="invalid-feedback">Please enter a symbol (max 10 chars).</div>
|
|
</div>
|
|
<div class="d-grid">
|
|
<button type="submit" class="btn btn-primary btn-lg">Create My Coin</button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
</main>
|
|
|
|
<!-- Footer -->
|
|
<footer class="mt-5">
|
|
<div class="container">
|
|
<p class="text-muted">© <?php echo date('Y'); ?> Sol LaunchLab. All Rights Reserved.</p>
|
|
</div>
|
|
</footer>
|
|
|
|
<!-- Success Toast -->
|
|
<div class="position-fixed bottom-0 end-0 p-3" style="z-index: 11">
|
|
<div id="successToast" class="toast align-items-center text-white bg-success border-0" role="alert" aria-live="assertive" aria-atomic="true">
|
|
<div class="d-flex">
|
|
<div class="toast-body fs-6">
|
|
<i class="bi bi-check-circle-fill me-2"></i>
|
|
Project created successfully!
|
|
</div>
|
|
<button type="button" class="btn-close btn-close-white me-2 m-auto" data-bs-dismiss="toast" aria-label="Close"></button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Bootstrap JS -->
|
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js"></script>
|
|
<!-- Custom JS -->
|
|
<script src="assets/js/main.js?v=<?php echo time(); ?>"></script>
|
|
</body>
|
|
</html>
|