{% extends "base.html" %} {% block title %}Pricing - Infyrus Tech{% endblock %} {% block content %}

Simple, Honest Pricing

No setup fees. No hidden charges. Cancel anytime.

Monthly Yearly Save 20%

Shared Hosting

{% set plans = [ ('Starter', 99, 79, 'fa-seedling', 'blue', False, ['1 Website', '10GB NVMe SSD', 'Free SSL', 'Free Email', 'Weekly Backup', '5 Databases', '5 Email Accounts']), ('Business', 199, 159, 'fa-briefcase', 'indigo', True, ['10 Websites', '50GB NVMe SSD', 'Free SSL', 'Unlimited Bandwidth', 'Daily Backup', 'Unlimited DBs', '20 Email Accounts']), ('Pro', 399, 319, 'fa-rocket', 'purple', False, ['Unlimited Websites', '100GB NVMe SSD', 'Free SSL', 'Free Migration', 'Daily Backup', 'Unlimited DBs', 'Unlimited Email']), ('Enterprise', 799, 639, 'fa-building', 'amber', False, ['VPS Hosting', 'Dedicated Resources', 'Priority Support', 'Unlimited Bandwidth', 'Daily Backup', 'Free Migration', 'SLA Agreement']) ] %} {% for name, monthly, yearly, icon, color, popular, features in plans %} {% endfor %}

VPS Hosting

{% set vps = [ ('VPS Lite', 1499, '1 vCPU / 1GB RAM / 30GB SSD'), ('VPS Pro', 2999, '2 vCPU / 4GB RAM / 80GB SSD'), ('VPS Power', 5999, '4 vCPU / 8GB RAM / 200GB SSD') ] %} {% for name, price, spec in vps %}

{{ name }}

{{ spec }}

Rs. {{ price }} /mo
    {% for f in ['Root Access', 'Full Bandwidth Control', 'DDoS Protection', 'Weekly Backup', 'cPanel / WHM'] %}
  • {{ f }}
  • {% endfor %}
View Plan
{% endfor %}

Full Plan Comparison

{% set rows = [ ('Websites', '1', '10', 'Unlimited', 'Unlimited'), ('SSD Storage', '10 GB', '50 GB', '100 GB', '200 GB'), ('Bandwidth', '100 GB', 'Unlimited', 'Unlimited', 'Unlimited'), ('Free SSL', True, True, True, True), ('Email Accounts', '5', '20', 'Unlimited', 'Unlimited'), ('Databases', '5', 'Unlimited', 'Unlimited', 'Unlimited'), ('Daily Backup', False, True, True, True), ('Free Migration', False, False, True, True), ('Priority Support', False, False, False, True), ('Staging Env', False, False, True, True), ] %} {% for feat, s, b, p, e in rows %} {% for val in [s, b, p, e] %} {% endfor %} {% endfor %}
Feature Starter Business Pro Enterprise
{{ feat }} {% if val == True %} {% elif val == False %} {% else %} {{ val }} {% endif %}
{% endblock %} {% block extra_scripts %} {% endblock %}