diff --git a/osinaweb/billing/__pycache__/views.cpython-312.pyc b/osinaweb/billing/__pycache__/views.cpython-312.pyc index 5a4eebb9..ea069b29 100644 Binary files a/osinaweb/billing/__pycache__/views.cpython-312.pyc and b/osinaweb/billing/__pycache__/views.cpython-312.pyc differ diff --git a/osinaweb/billing/add/__pycache__/urls.cpython-312.pyc b/osinaweb/billing/add/__pycache__/urls.cpython-312.pyc index c1ac9c85..b8a66263 100644 Binary files a/osinaweb/billing/add/__pycache__/urls.cpython-312.pyc and b/osinaweb/billing/add/__pycache__/urls.cpython-312.pyc differ diff --git a/osinaweb/billing/add/__pycache__/views.cpython-312.pyc b/osinaweb/billing/add/__pycache__/views.cpython-312.pyc index 5d74184a..876027f9 100644 Binary files a/osinaweb/billing/add/__pycache__/views.cpython-312.pyc and b/osinaweb/billing/add/__pycache__/views.cpython-312.pyc differ diff --git a/osinaweb/customercore/__pycache__/urls.cpython-312.pyc b/osinaweb/customercore/__pycache__/urls.cpython-312.pyc index b0342071..109b9f53 100644 Binary files a/osinaweb/customercore/__pycache__/urls.cpython-312.pyc and b/osinaweb/customercore/__pycache__/urls.cpython-312.pyc differ diff --git a/osinaweb/customercore/__pycache__/views.cpython-312.pyc b/osinaweb/customercore/__pycache__/views.cpython-312.pyc index 81e801d4..86d12287 100644 Binary files a/osinaweb/customercore/__pycache__/views.cpython-312.pyc and b/osinaweb/customercore/__pycache__/views.cpython-312.pyc differ diff --git a/osinaweb/customercore/templates/products/cpanel-licenses.html b/osinaweb/customercore/templates/products/cpanel-licenses.html new file mode 100644 index 00000000..93637828 --- /dev/null +++ b/osinaweb/customercore/templates/products/cpanel-licenses.html @@ -0,0 +1,172 @@ +{% extends "customer_main.html" %} +{%load static%} + +{% block modules_section %} + +{% endblock modules_section %} + +{% block content %} + + +
+
+ + + +
+
+

cPanel Admin Cloud

+ +
+

$26/month

+
+ + + + + +
+

Features:

+ +
+
+ + + +

5 cPanel Accounts

+
+
+ + + +

For Cloud VPS Only

+
+
+
+
+ +
+

cPanel Pro Cloud

+ +
+

$38.5/month

+
+ + + + + +
+

Features:

+ +
+
+ + + +

30 cPanel Accounts

+
+
+ + + +

For Cloud VPS Only

+
+
+
+
+ +
+

cPanel Premier Cloud

+ +
+

$57.5/month

+
+ + + + + +
+

Features:

+ +
+
+ + + +

100 cPanel Accounts

+
+
+ + + +

For Cloud VPS Only

+
+
+
+
+ +
+

cPanel Premier Metal

+ +
+

$57.5/month

+
+ + + + + +
+

Features:

+ +
+
+ + + +

100 cPanel Accounts

+
+
+ + + +

For Cloud VPS Only, Metal Server

+
+
+
+
+
+
+
+ + + + + +{% endblock %} \ No newline at end of file diff --git a/osinaweb/customercore/urls.py b/osinaweb/customercore/urls.py index 33b7787a..3bc91c80 100644 --- a/osinaweb/customercore/urls.py +++ b/osinaweb/customercore/urls.py @@ -29,6 +29,7 @@ urlpatterns = [ path('shared-hosting-plans/', views.shared_hosting_plans, name='sharedhostingplans'), path('cloud-vps-hosting-plans/', views.cloud_vps_hosting_plans, name='cloudvpshostingplans'), path('dedicated-servers-plans/', views.dedicated_servers_plans, name='dedicatedserversplans'), + path('cpanel-licenses/', views.cpanel_licenses, name='cpanellicenses'), # USER PROFILE diff --git a/osinaweb/customercore/views.py b/osinaweb/customercore/views.py index db0107c9..8b682cee 100644 --- a/osinaweb/customercore/views.py +++ b/osinaweb/customercore/views.py @@ -265,6 +265,16 @@ def dedicated_servers_plans(request, *args, **kwargs): return render(request, 'products/dedicated-servers-plans.html', context) +@customer_login_required +def cpanel_licenses(request, *args, **kwargs): + + context = { + + } + + return render(request, 'products/cpanel-licenses.html', context) + + # USER PROFILE diff --git a/osinaweb/osinacore/templates/customer_main.html b/osinaweb/osinacore/templates/customer_main.html index fe2fea01..5893bfcd 100644 --- a/osinaweb/osinacore/templates/customer_main.html +++ b/osinaweb/osinacore/templates/customer_main.html @@ -131,6 +131,13 @@

Dedicated CPU Servers

+ + +
+

cPanel Licenses

+
+
@@ -315,6 +322,13 @@

Dedicated CPU Servers

+ + +
+

cPanel Licenses

+
+
diff --git a/osinaweb/static/images/cpanellogo.png b/osinaweb/static/images/cpanellogo.png new file mode 100644 index 00000000..1a11999d Binary files /dev/null and b/osinaweb/static/images/cpanellogo.png differ