mirror of
https://github.com/thecyberlearn/quantum-ai.git
synced 2026-08-18 19:33:00 +00:00
- Fix secondary buttons with white background/border invisibility - Improve disabled button states with proper contrast ratios - Update form element borders for better visibility - Establish unified color system with CSS variables - Replace 11 random gradient classes with 4 professional ones - Fix authentication page styling and button definitions - Ensure accessibility compliance with visible interactive elements 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
212 lines
4.9 KiB
HTML
212 lines
4.9 KiB
HTML
{% extends 'base.html' %}
|
|
{% load static %}
|
|
|
|
{% block title %}Pricing - NetCop Hub{% endblock %}
|
|
|
|
{% block extra_css %}
|
|
<style>
|
|
.pricing-container {
|
|
max-width: 800px;
|
|
margin: 0 auto;
|
|
padding: 40px 20px;
|
|
}
|
|
|
|
.pricing-header {
|
|
text-align: center;
|
|
margin-bottom: 40px;
|
|
}
|
|
|
|
.pricing-header h1 {
|
|
font-size: 32px;
|
|
font-weight: 700;
|
|
color: #1f2937;
|
|
margin-bottom: 12px;
|
|
}
|
|
|
|
.pricing-header p {
|
|
font-size: 18px;
|
|
color: #6b7280;
|
|
margin: 0;
|
|
}
|
|
|
|
.pricing-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
|
|
gap: 24px;
|
|
margin-bottom: 40px;
|
|
}
|
|
|
|
.pricing-card {
|
|
background: white;
|
|
border: 1px solid #e5e7eb;
|
|
border-radius: 12px;
|
|
padding: 32px 24px;
|
|
text-align: center;
|
|
transition: box-shadow 0.2s ease;
|
|
}
|
|
|
|
.pricing-card:hover {
|
|
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
.pricing-card.popular {
|
|
border-color: #3b82f6;
|
|
position: relative;
|
|
}
|
|
|
|
.popular-badge {
|
|
position: absolute;
|
|
top: -10px;
|
|
left: 50%;
|
|
transform: translateX(-50%);
|
|
background: #3b82f6;
|
|
color: white;
|
|
padding: 4px 12px;
|
|
border-radius: 12px;
|
|
font-size: 12px;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.card-price {
|
|
font-size: 36px;
|
|
font-weight: 800;
|
|
color: #1f2937;
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
.card-description {
|
|
font-size: 16px;
|
|
color: #6b7280;
|
|
margin-bottom: 24px;
|
|
}
|
|
|
|
.card-button {
|
|
width: 100%;
|
|
background: #3b82f6;
|
|
color: white;
|
|
border: none;
|
|
padding: 12px 24px;
|
|
border-radius: 8px;
|
|
font-size: 16px;
|
|
font-weight: 600;
|
|
cursor: pointer;
|
|
text-decoration: none;
|
|
display: inline-block;
|
|
transition: background-color 0.2s ease;
|
|
}
|
|
|
|
.card-button:hover {
|
|
background: #2563eb;
|
|
color: white;
|
|
}
|
|
|
|
.cta-section {
|
|
text-align: center;
|
|
padding: 32px;
|
|
background: #f9fafb;
|
|
border-radius: 12px;
|
|
}
|
|
|
|
.cta-section h3 {
|
|
font-size: 24px;
|
|
font-weight: 700;
|
|
color: #1f2937;
|
|
margin-bottom: 12px;
|
|
}
|
|
|
|
.cta-section p {
|
|
font-size: 16px;
|
|
color: #6b7280;
|
|
margin-bottom: 24px;
|
|
}
|
|
|
|
.cta-buttons {
|
|
display: flex;
|
|
gap: 16px;
|
|
justify-content: center;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.cta-btn {
|
|
background: #10b981;
|
|
color: white;
|
|
border: none;
|
|
padding: 12px 24px;
|
|
border-radius: 8px;
|
|
font-size: 16px;
|
|
font-weight: 600;
|
|
text-decoration: none;
|
|
transition: background-color 0.2s ease;
|
|
}
|
|
|
|
.cta-btn:hover {
|
|
background: #059669;
|
|
color: white;
|
|
}
|
|
|
|
.cta-btn.secondary {
|
|
background: #6b7280;
|
|
}
|
|
|
|
.cta-btn.secondary:hover {
|
|
background: #4b5563;
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
.pricing-grid {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.cta-buttons {
|
|
flex-direction: column;
|
|
align-items: center;
|
|
}
|
|
|
|
.cta-btn {
|
|
width: 100%;
|
|
max-width: 300px;
|
|
}
|
|
}
|
|
</style>
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="pricing-container">
|
|
<div class="pricing-header">
|
|
<p>Add funds to your wallet and use AI agents with transparent pricing</p>
|
|
</div>
|
|
|
|
<div class="pricing-grid">
|
|
<div class="pricing-card">
|
|
<div class="card-price">10 AED</div>
|
|
<div class="card-description">Perfect for trying out agents</div>
|
|
<a href="{% url 'authentication:register' %}" class="card-button">Get Started</a>
|
|
</div>
|
|
|
|
<div class="pricing-card popular">
|
|
<div class="popular-badge">Most Popular</div>
|
|
<div class="card-price">50 AED</div>
|
|
<div class="card-description">Great for regular usage</div>
|
|
<a href="{% url 'authentication:register' %}" class="card-button">Get Started</a>
|
|
</div>
|
|
|
|
<div class="pricing-card">
|
|
<div class="card-price">100 AED</div>
|
|
<div class="card-description">Ideal for power users</div>
|
|
<a href="{% url 'authentication:register' %}" class="card-button">Get Started</a>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="cta-section">
|
|
<h3>Ready to get started?</h3>
|
|
<p>Create your account and start using AI agents today.</p>
|
|
<div class="cta-buttons">
|
|
<a href="{% url 'authentication:register' %}" class="cta-btn">Create Account</a>
|
|
<a href="{% url 'core:marketplace' %}" class="cta-btn secondary">View Marketplace</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|
|
|
|
{% block extra_js %}
|
|
{% endblock %} |