starting public section
This commit is contained in:
257
templates/public/contact.html
Normal file
257
templates/public/contact.html
Normal file
@@ -0,0 +1,257 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Contact Us - DocuPulse</title>
|
||||
<meta name="description" content="Get in touch with the DocuPulse team. We're here to help with your enterprise document management needs.">
|
||||
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
|
||||
<link rel="stylesheet" href="{{ url_for('static', filename='css/colors.css') }}?v={{ 'css/colors.css'|asset_version }}">
|
||||
<style>
|
||||
.contact-section {
|
||||
padding: 80px 0;
|
||||
}
|
||||
.contact-card {
|
||||
background: var(--white);
|
||||
border-radius: 15px;
|
||||
padding: 40px 30px;
|
||||
box-shadow: 0 5px 15px var(--shadow-color);
|
||||
height: 100%;
|
||||
border: none;
|
||||
}
|
||||
.contact-icon {
|
||||
width: 60px;
|
||||
height: 60px;
|
||||
background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
|
||||
border-radius: 50%;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
margin: 0 auto 20px;
|
||||
color: white;
|
||||
font-size: 1.5rem;
|
||||
}
|
||||
.hero-section {
|
||||
background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
|
||||
color: white;
|
||||
padding: 120px 0 80px 0;
|
||||
}
|
||||
.form-control {
|
||||
border-radius: 10px;
|
||||
border: 2px solid var(--border-color);
|
||||
padding: 12px 15px;
|
||||
}
|
||||
.form-control:focus {
|
||||
border-color: var(--primary-color);
|
||||
box-shadow: 0 0 0 0.2rem var(--primary-opacity-15);
|
||||
}
|
||||
.btn-primary {
|
||||
background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
|
||||
border: none;
|
||||
border-radius: 10px;
|
||||
padding: 12px 30px;
|
||||
font-weight: 600;
|
||||
}
|
||||
.btn-primary:hover {
|
||||
background: linear-gradient(135deg, var(--primary-light) 0%, var(--secondary-light) 100%);
|
||||
transform: translateY(-2px);
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
{% include 'components/header_nav.html' %}
|
||||
|
||||
<!-- Hero Section -->
|
||||
<section class="hero-section">
|
||||
<div class="container text-center">
|
||||
<h1 class="display-4 fw-bold mb-4">Get in Touch</h1>
|
||||
<p class="lead fs-5">We're here to help with your enterprise document management needs</p>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- Contact Information -->
|
||||
<section class="contact-section">
|
||||
<div class="container">
|
||||
<div class="row g-4 mb-5">
|
||||
<div class="col-lg-4 col-md-6">
|
||||
<div class="contact-card text-center">
|
||||
<div class="contact-icon">
|
||||
<i class="fas fa-envelope"></i>
|
||||
</div>
|
||||
<h4 class="fw-bold mb-3">Email Us</h4>
|
||||
<p class="text-muted mb-3">Get in touch with our support team</p>
|
||||
<a href="mailto:info@docupulse.com" class="text-decoration-none" style="color: var(--primary-color);">
|
||||
info@docupulse.com
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-4 col-md-6">
|
||||
<div class="contact-card text-center">
|
||||
<div class="contact-icon">
|
||||
<i class="fas fa-phone"></i>
|
||||
</div>
|
||||
<h4 class="fw-bold mb-3">Call Us</h4>
|
||||
<p class="text-muted mb-3">Speak with our sales team</p>
|
||||
<a href="tel:+15551234567" class="text-decoration-none" style="color: var(--primary-color);">
|
||||
+1 (555) 123-4567
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-4 col-md-6">
|
||||
<div class="contact-card text-center">
|
||||
<div class="contact-icon">
|
||||
<i class="fas fa-clock"></i>
|
||||
</div>
|
||||
<h4 class="fw-bold mb-3">Support Hours</h4>
|
||||
<p class="text-muted mb-3">We're here when you need us</p>
|
||||
<span style="color: var(--primary-color);">24/7 Available</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Contact Form -->
|
||||
<div class="row justify-content-center">
|
||||
<div class="col-lg-8">
|
||||
<div class="contact-card">
|
||||
<h2 class="text-center mb-4">Send us a Message</h2>
|
||||
<form>
|
||||
<div class="row g-3">
|
||||
<div class="col-md-6">
|
||||
<label for="firstName" class="form-label">First Name *</label>
|
||||
<input type="text" class="form-control" id="firstName" required>
|
||||
</div>
|
||||
<div class="col-md-6">
|
||||
<label for="lastName" class="form-label">Last Name *</label>
|
||||
<input type="text" class="form-control" id="lastName" required>
|
||||
</div>
|
||||
<div class="col-md-6">
|
||||
<label for="email" class="form-label">Email Address *</label>
|
||||
<input type="email" class="form-control" id="email" required>
|
||||
</div>
|
||||
<div class="col-md-6">
|
||||
<label for="phone" class="form-label">Phone Number</label>
|
||||
<input type="tel" class="form-control" id="phone">
|
||||
</div>
|
||||
<div class="col-12">
|
||||
<label for="company" class="form-label">Company</label>
|
||||
<input type="text" class="form-control" id="company">
|
||||
</div>
|
||||
<div class="col-12">
|
||||
<label for="subject" class="form-label">Subject *</label>
|
||||
<select class="form-control" id="subject" required>
|
||||
<option value="">Select a subject</option>
|
||||
<option value="sales">Sales Inquiry</option>
|
||||
<option value="support">Technical Support</option>
|
||||
<option value="demo">Request Demo</option>
|
||||
<option value="pricing">Pricing Questions</option>
|
||||
<option value="partnership">Partnership</option>
|
||||
<option value="other">Other</option>
|
||||
</select>
|
||||
</div>
|
||||
<div class="col-12">
|
||||
<label for="message" class="form-label">Message *</label>
|
||||
<textarea class="form-control" id="message" rows="5" required placeholder="Tell us how we can help you..."></textarea>
|
||||
</div>
|
||||
<div class="col-12">
|
||||
<div class="form-check">
|
||||
<input class="form-check-input" type="checkbox" id="newsletter">
|
||||
<label class="form-check-label" for="newsletter">
|
||||
Subscribe to our newsletter for updates and insights
|
||||
</label>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-12 text-center">
|
||||
<button type="submit" class="btn btn-primary btn-lg px-5">
|
||||
<i class="fas fa-paper-plane me-2"></i>Send Message
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- Office Locations -->
|
||||
<section class="contact-section" style="background-color: var(--bg-color);">
|
||||
<div class="container">
|
||||
<div class="text-center mb-5">
|
||||
<h2 class="display-5 fw-bold mb-3">Our Offices</h2>
|
||||
<p class="lead text-muted">Visit us at one of our locations</p>
|
||||
</div>
|
||||
<div class="row g-4">
|
||||
<div class="col-lg-6">
|
||||
<div class="contact-card">
|
||||
<h4 class="fw-bold mb-3">
|
||||
<i class="fas fa-map-marker-alt me-2" style="color: var(--primary-color);"></i>
|
||||
Headquarters
|
||||
</h4>
|
||||
<p class="text-muted mb-3">
|
||||
123 Business Street<br>
|
||||
Suite 100<br>
|
||||
San Francisco, CA 94105<br>
|
||||
United States
|
||||
</p>
|
||||
<a href="tel:+15551234567" class="text-decoration-none" style="color: var(--primary-color);">
|
||||
<i class="fas fa-phone me-2"></i>+1 (555) 123-4567
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-6">
|
||||
<div class="contact-card">
|
||||
<h4 class="fw-bold mb-3">
|
||||
<i class="fas fa-map-marker-alt me-2" style="color: var(--primary-color);"></i>
|
||||
European Office
|
||||
</h4>
|
||||
<p class="text-muted mb-3">
|
||||
456 Innovation Avenue<br>
|
||||
Floor 3<br>
|
||||
London, UK SW1A 1AA<br>
|
||||
United Kingdom
|
||||
</p>
|
||||
<a href="tel:+442071234567" class="text-decoration-none" style="color: var(--primary-color);">
|
||||
<i class="fas fa-phone me-2"></i>+44 20 7123 4567
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- CTA Section -->
|
||||
<section class="py-5">
|
||||
<div class="container text-center">
|
||||
<h2 class="display-5 fw-bold mb-4">Ready to Get Started?</h2>
|
||||
<p class="lead text-muted mb-5">Join thousands of businesses using DocuPulse for their document management needs</p>
|
||||
<div class="d-flex justify-content-center gap-3 flex-wrap">
|
||||
<a href="{{ url_for('public.pricing') }}" class="btn btn-primary btn-lg px-5 py-3">
|
||||
<i class="fas fa-rocket me-2"></i>View Pricing
|
||||
</a>
|
||||
<a href="{{ url_for('public.features') }}" class="btn btn-outline-primary btn-lg px-5 py-3">
|
||||
<i class="fas fa-play me-2"></i>Learn More
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
{% include 'components/footer_nav.html' %}
|
||||
|
||||
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script>
|
||||
<script>
|
||||
// Form submission handling
|
||||
document.querySelector('form').addEventListener('submit', function(e) {
|
||||
e.preventDefault();
|
||||
|
||||
// Get form data
|
||||
const formData = new FormData(this);
|
||||
const data = Object.fromEntries(formData);
|
||||
|
||||
// Show success message (in a real app, this would send to server)
|
||||
alert('Thank you for your message! We\'ll get back to you soon.');
|
||||
this.reset();
|
||||
});
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
304
templates/public/features.html
Normal file
304
templates/public/features.html
Normal file
@@ -0,0 +1,304 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Features - DocuPulse</title>
|
||||
<meta name="description" content="Discover the powerful features of DocuPulse - the enterprise document management platform designed for modern businesses.">
|
||||
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
|
||||
<link rel="stylesheet" href="{{ url_for('static', filename='css/colors.css') }}?v={{ 'css/colors.css'|asset_version }}">
|
||||
<style>
|
||||
.feature-section {
|
||||
padding: 80px 0;
|
||||
}
|
||||
.feature-card {
|
||||
background: var(--white);
|
||||
border-radius: 15px;
|
||||
padding: 40px 30px;
|
||||
box-shadow: 0 5px 15px var(--shadow-color);
|
||||
transition: transform 0.3s ease, box-shadow 0.3s ease;
|
||||
height: 100%;
|
||||
border: none;
|
||||
}
|
||||
.feature-card:hover {
|
||||
transform: translateY(-5px);
|
||||
box-shadow: 0 15px 35px var(--shadow-color-light);
|
||||
}
|
||||
.feature-icon {
|
||||
width: 80px;
|
||||
height: 80px;
|
||||
background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
|
||||
border-radius: 50%;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
margin: 0 auto 30px;
|
||||
color: white;
|
||||
font-size: 2rem;
|
||||
}
|
||||
.hero-section {
|
||||
background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
|
||||
color: white;
|
||||
padding: 120px 0 80px 0;
|
||||
}
|
||||
.section-title {
|
||||
color: var(--text-dark);
|
||||
font-weight: 700;
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
.section-subtitle {
|
||||
color: var(--text-muted);
|
||||
font-size: 1.1rem;
|
||||
margin-bottom: 3rem;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
{% include 'components/header_nav.html' %}
|
||||
|
||||
<!-- Hero Section -->
|
||||
<section class="hero-section">
|
||||
<div class="container text-center">
|
||||
<h1 class="display-4 fw-bold mb-4">Powerful Features for Modern Enterprises</h1>
|
||||
<p class="lead fs-5">Discover how DocuPulse transforms document management with intelligent workflows, secure collaboration, and scalable architecture.</p>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- Core Features -->
|
||||
<section class="feature-section">
|
||||
<div class="container">
|
||||
<div class="text-center mb-5">
|
||||
<h2 class="section-title">Core Features</h2>
|
||||
<p class="section-subtitle">Everything you need to manage documents efficiently and securely</p>
|
||||
</div>
|
||||
<div class="row g-4">
|
||||
<div class="col-lg-4 col-md-6">
|
||||
<div class="feature-card">
|
||||
<div class="feature-icon">
|
||||
<i class="fas fa-door-open"></i>
|
||||
</div>
|
||||
<h3 class="h5 fw-bold mb-3">Room-Based Workspaces</h3>
|
||||
<p class="text-muted">Create isolated collaboration environments with granular permissions, file storage, and real-time messaging for teams and projects.</p>
|
||||
<ul class="list-unstyled mt-3">
|
||||
<li><i class="fas fa-check text-success me-2"></i>Isolated team spaces</li>
|
||||
<li><i class="fas fa-check text-success me-2"></i>Granular permissions</li>
|
||||
<li><i class="fas fa-check text-success me-2"></i>Project organization</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-4 col-md-6">
|
||||
<div class="feature-card">
|
||||
<div class="feature-icon">
|
||||
<i class="fas fa-comments"></i>
|
||||
</div>
|
||||
<h3 class="h5 fw-bold mb-3">Real-Time Messaging</h3>
|
||||
<p class="text-muted">Advanced chat system with file attachments, member management, conversation history, and instant notifications.</p>
|
||||
<ul class="list-unstyled mt-3">
|
||||
<li><i class="fas fa-check text-success me-2"></i>File attachments</li>
|
||||
<li><i class="fas fa-check text-success me-2"></i>Member management</li>
|
||||
<li><i class="fas fa-check text-success me-2"></i>Conversation history</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-4 col-md-6">
|
||||
<div class="feature-card">
|
||||
<div class="feature-icon">
|
||||
<i class="fas fa-folder-tree"></i>
|
||||
</div>
|
||||
<h3 class="h5 fw-bold mb-3">Advanced File Management</h3>
|
||||
<p class="text-muted">Upload, organize, search, and manage files with hierarchical folders, version control, and comprehensive metadata tracking.</p>
|
||||
<ul class="list-unstyled mt-3">
|
||||
<li><i class="fas fa-check text-success me-2"></i>Hierarchical folders</li>
|
||||
<li><i class="fas fa-check text-success me-2"></i>Version control</li>
|
||||
<li><i class="fas fa-check text-success me-2"></i>Metadata tracking</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- Security & Compliance -->
|
||||
<section class="feature-section" style="background-color: var(--bg-color);">
|
||||
<div class="container">
|
||||
<div class="text-center mb-5">
|
||||
<h2 class="section-title">Security & Compliance</h2>
|
||||
<p class="section-subtitle">Enterprise-grade security with comprehensive compliance features</p>
|
||||
</div>
|
||||
<div class="row g-4">
|
||||
<div class="col-lg-4 col-md-6">
|
||||
<div class="feature-card">
|
||||
<div class="feature-icon">
|
||||
<i class="fas fa-user-shield"></i>
|
||||
</div>
|
||||
<h3 class="h5 fw-bold mb-3">Role-Based Security</h3>
|
||||
<p class="text-muted">Granular permission system with user roles, access controls, and comprehensive audit logging for security compliance.</p>
|
||||
<ul class="list-unstyled mt-3">
|
||||
<li><i class="fas fa-check text-success me-2"></i>User roles & permissions</li>
|
||||
<li><i class="fas fa-check text-success me-2"></i>Access controls</li>
|
||||
<li><i class="fas fa-check text-success me-2"></i>Audit logging</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-4 col-md-6">
|
||||
<div class="feature-card">
|
||||
<div class="feature-icon">
|
||||
<i class="fas fa-lock"></i>
|
||||
</div>
|
||||
<h3 class="h5 fw-bold mb-3">Data Protection</h3>
|
||||
<p class="text-muted">End-to-end encryption, secure file storage, and comprehensive data protection measures to keep your information safe.</p>
|
||||
<ul class="list-unstyled mt-3">
|
||||
<li><i class="fas fa-check text-success me-2"></i>End-to-end encryption</li>
|
||||
<li><i class="fas fa-check text-success me-2"></i>Secure storage</li>
|
||||
<li><i class="fas fa-check text-success me-2"></i>Data protection</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-4 col-md-6">
|
||||
<div class="feature-card">
|
||||
<div class="feature-icon">
|
||||
<i class="fas fa-shield-alt"></i>
|
||||
</div>
|
||||
<h3 class="h5 fw-bold mb-3">Compliance Ready</h3>
|
||||
<p class="text-muted">Built-in compliance features for GDPR, HIPAA, and other regulatory requirements with automated compliance reporting.</p>
|
||||
<ul class="list-unstyled mt-3">
|
||||
<li><i class="fas fa-check text-success me-2"></i>GDPR compliance</li>
|
||||
<li><i class="fas fa-check text-success me-2"></i>HIPAA ready</li>
|
||||
<li><i class="fas fa-check text-success me-2"></i>Automated reporting</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- Collaboration & Communication -->
|
||||
<section class="feature-section">
|
||||
<div class="container">
|
||||
<div class="text-center mb-5">
|
||||
<h2 class="section-title">Collaboration & Communication</h2>
|
||||
<p class="section-subtitle">Enhanced team collaboration with intelligent communication tools</p>
|
||||
</div>
|
||||
<div class="row g-4">
|
||||
<div class="col-lg-4 col-md-6">
|
||||
<div class="feature-card">
|
||||
<div class="feature-icon">
|
||||
<i class="fas fa-bell"></i>
|
||||
</div>
|
||||
<h3 class="h5 fw-bold mb-3">Smart Notifications</h3>
|
||||
<p class="text-muted">Comprehensive notification system with customizable email templates, SMTP integration, and real-time alerts.</p>
|
||||
<ul class="list-unstyled mt-3">
|
||||
<li><i class="fas fa-check text-success me-2"></i>Customizable templates</li>
|
||||
<li><i class="fas fa-check text-success me-2"></i>SMTP integration</li>
|
||||
<li><i class="fas fa-check text-success me-2"></i>Real-time alerts</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-4 col-md-6">
|
||||
<div class="feature-card">
|
||||
<div class="feature-icon">
|
||||
<i class="fas fa-users"></i>
|
||||
</div>
|
||||
<h3 class="h5 fw-bold mb-3">Team Management</h3>
|
||||
<p class="text-muted">Efficient team management with member roles, permissions, and collaborative workflows for seamless project execution.</p>
|
||||
<ul class="list-unstyled mt-3">
|
||||
<li><i class="fas fa-check text-success me-2"></i>Member roles</li>
|
||||
<li><i class="fas fa-check text-success me-2"></i>Collaborative workflows</li>
|
||||
<li><i class="fas fa-check text-success me-2"></i>Project execution</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-4 col-md-6">
|
||||
<div class="feature-card">
|
||||
<div class="feature-icon">
|
||||
<i class="fas fa-star"></i>
|
||||
</div>
|
||||
<h3 class="h5 fw-bold mb-3">File Organization</h3>
|
||||
<p class="text-muted">Advanced file organization with starring, tagging, and intelligent search capabilities for quick access to important documents.</p>
|
||||
<ul class="list-unstyled mt-3">
|
||||
<li><i class="fas fa-check text-success me-2"></i>File starring</li>
|
||||
<li><i class="fas fa-check text-success me-2"></i>Intelligent search</li>
|
||||
<li><i class="fas fa-check text-success me-2"></i>Quick access</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- Customization & Integration -->
|
||||
<section class="feature-section" style="background-color: var(--bg-color);">
|
||||
<div class="container">
|
||||
<div class="text-center mb-5">
|
||||
<h2 class="section-title">Customization & Integration</h2>
|
||||
<p class="section-subtitle">Flexible platform that adapts to your business needs</p>
|
||||
</div>
|
||||
<div class="row g-4">
|
||||
<div class="col-lg-4 col-md-6">
|
||||
<div class="feature-card">
|
||||
<div class="feature-icon">
|
||||
<i class="fas fa-palette"></i>
|
||||
</div>
|
||||
<h3 class="h5 fw-bold mb-3">Dynamic Theming</h3>
|
||||
<p class="text-muted">Customizable color system with CSS custom properties, allowing instant theme changes and brand customization.</p>
|
||||
<ul class="list-unstyled mt-3">
|
||||
<li><i class="fas fa-check text-success me-2"></i>Custom colors</li>
|
||||
<li><i class="fas fa-check text-success me-2"></i>Brand customization</li>
|
||||
<li><i class="fas fa-check text-success me-2"></i>Instant changes</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-4 col-md-6">
|
||||
<div class="feature-card">
|
||||
<div class="feature-icon">
|
||||
<i class="fas fa-cogs"></i>
|
||||
</div>
|
||||
<h3 class="h5 fw-bold mb-3">Flexible Configuration</h3>
|
||||
<p class="text-muted">Comprehensive settings and configuration options to tailor the platform to your specific business requirements.</p>
|
||||
<ul class="list-unstyled mt-3">
|
||||
<li><i class="fas fa-check text-success me-2"></i>Custom settings</li>
|
||||
<li><i class="fas fa-check text-success me-2"></i>Business requirements</li>
|
||||
<li><i class="fas fa-check text-success me-2"></i>Flexible options</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-4 col-md-6">
|
||||
<div class="feature-card">
|
||||
<div class="feature-icon">
|
||||
<i class="fas fa-chart-line"></i>
|
||||
</div>
|
||||
<h3 class="h5 fw-bold mb-3">Analytics & Insights</h3>
|
||||
<p class="text-muted">Comprehensive analytics and reporting tools to track usage, performance, and user engagement across your platform.</p>
|
||||
<ul class="list-unstyled mt-3">
|
||||
<li><i class="fas fa-check text-success me-2"></i>Usage tracking</li>
|
||||
<li><i class="fas fa-check text-success me-2"></i>Performance metrics</li>
|
||||
<li><i class="fas fa-check text-success me-2"></i>User engagement</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- CTA Section -->
|
||||
<section class="py-5">
|
||||
<div class="container text-center">
|
||||
<h2 class="display-5 fw-bold mb-4">Ready to Get Started?</h2>
|
||||
<p class="lead text-muted mb-5">Experience the power of DocuPulse for your enterprise document management needs</p>
|
||||
<div class="d-flex justify-content-center gap-3 flex-wrap">
|
||||
<a href="{{ url_for('public.pricing') }}" class="btn btn-primary btn-lg px-5 py-3">
|
||||
<i class="fas fa-rocket me-2"></i>View Pricing
|
||||
</a>
|
||||
<a href="{{ url_for('public.contact') }}" class="btn btn-outline-primary btn-lg px-5 py-3">
|
||||
<i class="fas fa-envelope me-2"></i>Contact Sales
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
{% include 'components/footer_nav.html' %}
|
||||
|
||||
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
357
templates/public/pricing.html
Normal file
357
templates/public/pricing.html
Normal file
@@ -0,0 +1,357 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Pricing - DocuPulse</title>
|
||||
<meta name="description" content="Choose the perfect DocuPulse plan for your enterprise. Transparent pricing with flexible options for teams of all sizes.">
|
||||
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
|
||||
<link rel="stylesheet" href="{{ url_for('static', filename='css/colors.css') }}?v={{ 'css/colors.css'|asset_version }}">
|
||||
<style>
|
||||
.pricing-section {
|
||||
padding: 80px 0;
|
||||
}
|
||||
.pricing-card {
|
||||
background: var(--white);
|
||||
border-radius: 15px;
|
||||
padding: 40px 30px;
|
||||
box-shadow: 0 5px 15px var(--shadow-color);
|
||||
transition: transform 0.3s ease, box-shadow 0.3s ease;
|
||||
height: 100%;
|
||||
border: 2px solid transparent;
|
||||
position: relative;
|
||||
}
|
||||
.pricing-card:hover {
|
||||
transform: translateY(-5px);
|
||||
box-shadow: 0 15px 35px var(--shadow-color-light);
|
||||
}
|
||||
.pricing-card.featured {
|
||||
border-color: var(--primary-color);
|
||||
transform: scale(1.05);
|
||||
}
|
||||
.pricing-card.featured::before {
|
||||
content: 'Most Popular';
|
||||
position: absolute;
|
||||
top: -12px;
|
||||
left: 50%;
|
||||
transform: translateX(-50%);
|
||||
background: var(--primary-color);
|
||||
color: white;
|
||||
padding: 5px 20px;
|
||||
border-radius: 20px;
|
||||
font-size: 0.8rem;
|
||||
font-weight: 600;
|
||||
}
|
||||
.price {
|
||||
font-size: 3rem;
|
||||
font-weight: 700;
|
||||
color: var(--primary-color);
|
||||
margin-bottom: 0.5rem;
|
||||
}
|
||||
.price-period {
|
||||
color: var(--text-muted);
|
||||
font-size: 1rem;
|
||||
}
|
||||
.feature-list {
|
||||
list-style: none;
|
||||
padding: 0;
|
||||
margin: 2rem 0;
|
||||
}
|
||||
.feature-list li {
|
||||
padding: 0.5rem 0;
|
||||
border-bottom: 1px solid var(--border-color);
|
||||
}
|
||||
.feature-list li:last-child {
|
||||
border-bottom: none;
|
||||
}
|
||||
.feature-list i {
|
||||
color: var(--success-color);
|
||||
margin-right: 0.5rem;
|
||||
}
|
||||
.hero-section {
|
||||
background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
|
||||
color: white;
|
||||
padding: 120px 0 80px 0;
|
||||
}
|
||||
.faq-section {
|
||||
background-color: var(--bg-color);
|
||||
}
|
||||
.faq-item {
|
||||
background: var(--white);
|
||||
border-radius: 10px;
|
||||
margin-bottom: 1rem;
|
||||
box-shadow: 0 2px 5px var(--shadow-color);
|
||||
}
|
||||
.faq-question {
|
||||
padding: 1.5rem;
|
||||
cursor: pointer;
|
||||
border-bottom: 1px solid var(--border-color);
|
||||
font-weight: 600;
|
||||
}
|
||||
.faq-answer {
|
||||
padding: 1.5rem;
|
||||
color: var(--text-muted);
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
{% include 'components/header_nav.html' %}
|
||||
|
||||
<!-- Hero Section -->
|
||||
<section class="hero-section">
|
||||
<div class="container text-center">
|
||||
<h1 class="display-4 fw-bold mb-4">Simple, Transparent Pricing</h1>
|
||||
<p class="lead fs-5">Choose the perfect plan for your enterprise. No hidden fees, no surprises.</p>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- Pricing Plans -->
|
||||
<section class="pricing-section">
|
||||
<div class="container">
|
||||
<div class="row g-4 justify-content-center">
|
||||
<div class="col-lg-3 col-md-6">
|
||||
<div class="pricing-card">
|
||||
<h3 class="h4 fw-bold mb-3">Starter</h3>
|
||||
<div class="price">$29<span class="price-period">/month</span></div>
|
||||
<p class="text-muted mb-4">Perfect for small teams getting started</p>
|
||||
<ul class="feature-list">
|
||||
<li><i class="fas fa-check"></i>Up to 10 rooms</li>
|
||||
<li><i class="fas fa-check"></i>Up to 20 conversations</li>
|
||||
<li><i class="fas fa-check"></i>25GB storage</li>
|
||||
<li><i class="fas fa-check"></i>Up to 10 managers</li>
|
||||
<li><i class="fas fa-check"></i>Basic support</li>
|
||||
<li><i class="fas fa-check"></i>Core features</li>
|
||||
</ul>
|
||||
<a href="{{ url_for('public.contact') }}" class="btn btn-outline-primary w-100">Get Started</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-3 col-md-6">
|
||||
<div class="pricing-card featured">
|
||||
<h3 class="h4 fw-bold mb-3">Professional</h3>
|
||||
<div class="price">$99<span class="price-period">/month</span></div>
|
||||
<p class="text-muted mb-4">Ideal for growing businesses</p>
|
||||
<ul class="feature-list">
|
||||
<li><i class="fas fa-check"></i>Up to 25 rooms</li>
|
||||
<li><i class="fas fa-check"></i>Up to 50 conversations</li>
|
||||
<li><i class="fas fa-check"></i>100GB storage</li>
|
||||
<li><i class="fas fa-check"></i>Up to 50 managers</li>
|
||||
<li><i class="fas fa-check"></i>Priority support</li>
|
||||
<li><i class="fas fa-check"></i>Advanced features</li>
|
||||
</ul>
|
||||
<a href="{{ url_for('public.contact') }}" class="btn btn-primary w-100">Get Started</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-3 col-md-6">
|
||||
<div class="pricing-card">
|
||||
<h3 class="h4 fw-bold mb-3">Enterprise</h3>
|
||||
<div class="price">$299<span class="price-period">/month</span></div>
|
||||
<p class="text-muted mb-4">For large organizations</p>
|
||||
<ul class="feature-list">
|
||||
<li><i class="fas fa-check"></i>Up to 100 rooms</li>
|
||||
<li><i class="fas fa-check"></i>Up to 200 conversations</li>
|
||||
<li><i class="fas fa-check"></i>500GB storage</li>
|
||||
<li><i class="fas fa-check"></i>Up to 200 managers</li>
|
||||
<li><i class="fas fa-check"></i>24/7 dedicated support</li>
|
||||
<li><i class="fas fa-check"></i>All features included</li>
|
||||
</ul>
|
||||
<a href="{{ url_for('public.contact') }}" class="btn btn-outline-primary w-100">Get Started</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-3 col-md-6">
|
||||
<div class="pricing-card">
|
||||
<h3 class="h4 fw-bold mb-3">Custom</h3>
|
||||
<div class="price">Custom</div>
|
||||
<p class="text-muted mb-4">Tailored for your needs</p>
|
||||
<ul class="feature-list">
|
||||
<li><i class="fas fa-check"></i>Unlimited rooms</li>
|
||||
<li><i class="fas fa-check"></i>Unlimited conversations</li>
|
||||
<li><i class="fas fa-check"></i>Unlimited storage</li>
|
||||
<li><i class="fas fa-check"></i>Unlimited users</li>
|
||||
<li><i class="fas fa-check"></i>Custom integrations</li>
|
||||
<li><i class="fas fa-check"></i>Dedicated account manager</li>
|
||||
</ul>
|
||||
<a href="{{ url_for('public.contact') }}" class="btn btn-outline-primary w-100">Contact Sales</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- Features Comparison -->
|
||||
<section class="pricing-section" style="background-color: var(--bg-color);">
|
||||
<div class="container">
|
||||
<div class="text-center mb-5">
|
||||
<h2 class="display-5 fw-bold mb-3">Feature Comparison</h2>
|
||||
<p class="lead text-muted">See what's included in each plan</p>
|
||||
</div>
|
||||
<div class="table-responsive">
|
||||
<table class="table table-hover">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Feature</th>
|
||||
<th class="text-center">Starter</th>
|
||||
<th class="text-center">Professional</th>
|
||||
<th class="text-center">Enterprise</th>
|
||||
<th class="text-center">Custom</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>Room-based workspaces</td>
|
||||
<td class="text-center"><i class="fas fa-check text-success"></i></td>
|
||||
<td class="text-center"><i class="fas fa-check text-success"></i></td>
|
||||
<td class="text-center"><i class="fas fa-check text-success"></i></td>
|
||||
<td class="text-center"><i class="fas fa-check text-success"></i></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Real-time messaging</td>
|
||||
<td class="text-center"><i class="fas fa-check text-success"></i></td>
|
||||
<td class="text-center"><i class="fas fa-check text-success"></i></td>
|
||||
<td class="text-center"><i class="fas fa-check text-success"></i></td>
|
||||
<td class="text-center"><i class="fas fa-check text-success"></i></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>File management</td>
|
||||
<td class="text-center"><i class="fas fa-check text-success"></i></td>
|
||||
<td class="text-center"><i class="fas fa-check text-success"></i></td>
|
||||
<td class="text-center"><i class="fas fa-check text-success"></i></td>
|
||||
<td class="text-center"><i class="fas fa-check text-success"></i></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Role-based security</td>
|
||||
<td class="text-center"><i class="fas fa-check text-success"></i></td>
|
||||
<td class="text-center"><i class="fas fa-check text-success"></i></td>
|
||||
<td class="text-center"><i class="fas fa-check text-success"></i></td>
|
||||
<td class="text-center"><i class="fas fa-check text-success"></i></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Advanced notifications</td>
|
||||
<td class="text-center"><i class="fas fa-times text-muted"></i></td>
|
||||
<td class="text-center"><i class="fas fa-check text-success"></i></td>
|
||||
<td class="text-center"><i class="fas fa-check text-success"></i></td>
|
||||
<td class="text-center"><i class="fas fa-check text-success"></i></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Custom theming</td>
|
||||
<td class="text-center"><i class="fas fa-times text-muted"></i></td>
|
||||
<td class="text-center"><i class="fas fa-check text-success"></i></td>
|
||||
<td class="text-center"><i class="fas fa-check text-success"></i></td>
|
||||
<td class="text-center"><i class="fas fa-check text-success"></i></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Analytics & reporting</td>
|
||||
<td class="text-center"><i class="fas fa-times text-muted"></i></td>
|
||||
<td class="text-center"><i class="fas fa-times text-muted"></i></td>
|
||||
<td class="text-center"><i class="fas fa-check text-success"></i></td>
|
||||
<td class="text-center"><i class="fas fa-check text-success"></i></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Custom integrations</td>
|
||||
<td class="text-center"><i class="fas fa-times text-muted"></i></td>
|
||||
<td class="text-center"><i class="fas fa-times text-muted"></i></td>
|
||||
<td class="text-center"><i class="fas fa-times text-muted"></i></td>
|
||||
<td class="text-center"><i class="fas fa-check text-success"></i></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- FAQ Section -->
|
||||
<section class="pricing-section faq-section">
|
||||
<div class="container">
|
||||
<div class="text-center mb-5">
|
||||
<h2 class="display-5 fw-bold mb-3">Frequently Asked Questions</h2>
|
||||
<p class="lead text-muted">Everything you need to know about our pricing</p>
|
||||
</div>
|
||||
<div class="row justify-content-center">
|
||||
<div class="col-lg-8">
|
||||
<div class="faq-item">
|
||||
<div class="faq-question" onclick="toggleFAQ(this)">
|
||||
<i class="fas fa-chevron-down me-2"></i>
|
||||
Can I change my plan at any time?
|
||||
</div>
|
||||
<div class="faq-answer" style="display: none;">
|
||||
Yes, you can upgrade or downgrade your plan at any time. Changes will be prorated and reflected in your next billing cycle.
|
||||
</div>
|
||||
</div>
|
||||
<div class="faq-item">
|
||||
<div class="faq-question" onclick="toggleFAQ(this)">
|
||||
<i class="fas fa-chevron-down me-2"></i>
|
||||
Is there a free trial available?
|
||||
</div>
|
||||
<div class="faq-answer" style="display: none;">
|
||||
We offer a 14-day free trial for all plans. No credit card required to start your trial.
|
||||
</div>
|
||||
</div>
|
||||
<div class="faq-item">
|
||||
<div class="faq-question" onclick="toggleFAQ(this)">
|
||||
<i class="fas fa-chevron-down me-2"></i>
|
||||
What payment methods do you accept?
|
||||
</div>
|
||||
<div class="faq-answer" style="display: none;">
|
||||
We accept all major credit cards, PayPal, and bank transfers for annual plans. Enterprise customers can also pay by invoice.
|
||||
</div>
|
||||
</div>
|
||||
<div class="faq-item">
|
||||
<div class="faq-question" onclick="toggleFAQ(this)">
|
||||
<i class="fas fa-chevron-down me-2"></i>
|
||||
Do you offer discounts for annual billing?
|
||||
</div>
|
||||
<div class="faq-answer" style="display: none;">
|
||||
Yes, we offer a 20% discount when you choose annual billing instead of monthly billing.
|
||||
</div>
|
||||
</div>
|
||||
<div class="faq-item">
|
||||
<div class="faq-question" onclick="toggleFAQ(this)">
|
||||
<i class="fas fa-chevron-down me-2"></i>
|
||||
What happens if I exceed my storage limit?
|
||||
</div>
|
||||
<div class="faq-answer" style="display: none;">
|
||||
You'll receive a notification when you're approaching your limit. You can either upgrade your plan or purchase additional storage.
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- CTA Section -->
|
||||
<section class="py-5">
|
||||
<div class="container text-center">
|
||||
<h2 class="display-5 fw-bold mb-4">Ready to Get Started?</h2>
|
||||
<p class="lead text-muted mb-5">Join thousands of businesses using DocuPulse for their document management needs</p>
|
||||
<div class="d-flex justify-content-center gap-3 flex-wrap">
|
||||
<a href="{{ url_for('public.contact') }}" class="btn btn-primary btn-lg px-5 py-3">
|
||||
<i class="fas fa-rocket me-2"></i>Start Free Trial
|
||||
</a>
|
||||
<a href="{{ url_for('public.contact') }}" class="btn btn-outline-primary btn-lg px-5 py-3">
|
||||
<i class="fas fa-phone me-2"></i>Talk to Sales
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
{% include 'components/footer_nav.html' %}
|
||||
|
||||
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script>
|
||||
<script>
|
||||
function toggleFAQ(element) {
|
||||
const answer = element.nextElementSibling;
|
||||
const icon = element.querySelector('i');
|
||||
|
||||
if (answer.style.display === 'none') {
|
||||
answer.style.display = 'block';
|
||||
icon.classList.remove('fa-chevron-down');
|
||||
icon.classList.add('fa-chevron-up');
|
||||
} else {
|
||||
answer.style.display = 'none';
|
||||
icon.classList.remove('fa-chevron-up');
|
||||
icon.classList.add('fa-chevron-down');
|
||||
}
|
||||
}
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user