34940-vm/index.php
Flatlogic Bot df1297b91e Draft
2025-10-13 22:35:33 +00:00

162 lines
8.0 KiB
PHP

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>AMS - Association Management System</title>
<meta name="description" content="A powerful and intuitive Association Management System (AMS) for managing societies, members, and residents. Built with Flatlogic Generator.">
<meta name="keywords" content="association management, society management, member portal, resident management, community management, ams software, flatlogic">
<meta property="og:title" content="AMS - Association Management System">
<meta property="og:description" content="A powerful and intuitive Association Management System (AMS) for managing societies, members, and residents.">
<meta property="og:image" content="">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:image" content="">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.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=Poppins:wght@400;600;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="assets/css/custom.css?v=<?php echo time(); ?>">
</head>
<body>
<!-- Navigation -->
<nav class="navbar navbar-expand-lg navbar-light sticky-top">
<div class="container">
<a class="navbar-brand" href="#">AMS</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="#hero">Home</a></li>
<li class="nav-item"><a class="nav-link" href="#about">About</a></li>
<li class="nav-item"><a class="nav-link" href="#portfolio">Portfolio</a></li>
<li class="nav-item"><a class="nav-link" href="#testimonials">Testimonials</a></li>
<li><a href="#contact">Contact</a></li>
<li><a href="login.php" class="btn-nav">Login</a></li>
</ul>
</div>
</div>
</nav>
<!-- Hero Section -->
<header id="hero" class="hero text-center">
<div class="container">
<h1>Effortless Association Management</h1>
<p class="lead">The all-in-one platform to streamline your community's operations.</p>
<a href="#contact" class="btn btn-light btn-lg">Request a Demo</a>
</div>
</header>
<!-- About Section -->
<section id="about" class="section">
<div class="container text-center">
<h2 class="section-title">About Our AMS</h2>
<p class="lead">Our Association Management System is designed to simplify the complexities of managing societies. From member roles to financial tracking, we provide a comprehensive suite of tools to empower your community leaders and engage your residents.</p>
</div>
</section>
<!-- Portfolio Section -->
<section id="portfolio" class="section bg-light">
<div class="container">
<h2 class="section-title text-center">Managed Associations</h2>
<div class="row">
<div class="col-md-4">
<div class="card">
<div class="card-body">
<h5 class="card-title">Sunrise Valley Association</h5>
<p class="card-text">A thriving community of 500+ members, using our AMS to manage events and financials.</p>
</div>
</div>
</div>
<div class="col-md-4">
<div class="card">
<div class="card-body">
<h5 class="card-title">Oceanbreeze Society</h5>
<p class="card-text">Streamlining resident communications and document sharing for a large residential complex.</p>
</div>
</div>
</div>
<div class="col-md-4">
<div class="card">
<div class="card-body">
<h5 class="card-title">Mountainview Estates</h5>
<p class="card-text">Leveraging role-based access for efficient governance and member engagement.</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Testimonials 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">
<div class="card">
<div class="card-body">
<blockquote class="blockquote">
<p>"This AMS has transformed how we operate. It's intuitive, powerful, and has saved us countless hours."</p>
<footer class="blockquote-footer">John D, President</footer>
</blockquote>
</div>
</div>
</div>
<div class="col-md-6">
<div class="card">
<div class="card-body">
<blockquote class="blockquote">
<p>"The financial tools are a game-changer for our Treasurer. Everything is transparent and easy to track."</p>
<footer class="blockquote-footer">Jane S, Association Admin</footer>
</blockquote>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="section bg-light">
<div class="container">
<h2 class="section-title text-center">Get In Touch</h2>
<div class="row justify-content-center">
<div class="col-md-8">
<form id="contactForm" class="needs-validation" novalidate>
<div class="mb-3">
<label for="name" class="form-label">Name</label>
<input type="text" class="form-control" id="name" required>
<div class="invalid-feedback">Please enter your name.</div>
</div>
<div class="mb-3">
<label for="email" class="form-label">Email</label>
<input type="email" class="form-control" id="email" required>
<div class="invalid-feedback">Please enter a valid email address.</div>
</div>
<div class="mb-3">
<label for="message" class="form-label">Message</label>
<textarea class="form-control" id="message" rows="5" required></textarea>
<div class="invalid-feedback">Please enter your message.</div>
</div>
<button type="submit" class="btn btn-primary">Send Message</button>
</form>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="footer text-center">
<div class="container">
<p>&copy; 2025 AMS. All Rights Reserved.</p>
<a href="privacy.php" class="text-white">Privacy Policy</a>
</div>
</footer>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script>
<script src="assets/js/main.js?v=<?php echo time(); ?>"></script>
</body>
</html>