New changes.
parent
c6fa1eec00
commit
f3159b784b
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -0,0 +1,101 @@
|
||||
{% extends "customer_main.html" %}
|
||||
{%load static%}
|
||||
|
||||
{% block content %}
|
||||
|
||||
<div class="w-full px-5 s:px-9 flex flex-col gap-3">
|
||||
<div class="w-full bg-white rounded-md h-fit shadow-md p-5">
|
||||
<h1 class="text-secondosiblue text-[30px] font-semibold">My Orders</h1>
|
||||
|
||||
|
||||
<div class="overflow-x-auto border border-gray-300 rounded-md mt-4">
|
||||
<table class="min-w-full divide-y">
|
||||
<!-- TABLE HEADER -->
|
||||
<thead class="bg-gray-50">
|
||||
<tr>
|
||||
<th scope="col"
|
||||
class="px-6 py-3 text-sm font-medium text-gray-500 uppercase border-r border-gray-300 whitespace-nowrap">
|
||||
Order ID
|
||||
</th>
|
||||
<th scope="col"
|
||||
class="px-6 py-3 text-sm font-medium text-gray-500 uppercase border-r border-gray-300 whitespace-nowrap">
|
||||
Product
|
||||
</th>
|
||||
<th scope="col"
|
||||
class="px-6 py-3 text-sm font-medium text-gray-500 uppercase border-r border-gray-300 whitespace-nowrap">
|
||||
Cost
|
||||
</th>
|
||||
<th scope="col"
|
||||
class="px-6 py-3 text-sm font-medium text-gray-500 uppercase border-r border-gray-300 whitespace-nowrap">
|
||||
Status
|
||||
</th>
|
||||
<th scope="col" class="px-6 py-3 text-sm font-medium text-gray-500 uppercase whitespace-nowrap">
|
||||
Actions
|
||||
</th>
|
||||
</tr>
|
||||
</thead>
|
||||
|
||||
<!-- TABLE BODY -->
|
||||
<tbody class="bg-white divide-y divide-gray-200">
|
||||
<tr>
|
||||
<td class="px-6 py-4 text-center text-sm border-r border-gray-300">
|
||||
<p class="text-slate-800">1</p>
|
||||
</td>
|
||||
|
||||
<td class="px-6 py-4 text-center text-sm border-r border-gray-300">
|
||||
<p class="text-slate-800">Standard Osimenu</p>
|
||||
</td>
|
||||
|
||||
<td class="px-6 py-4 text-center text-sm border-r border-gray-300">
|
||||
<p class="text-slate-800">$169</p>
|
||||
</td>
|
||||
|
||||
<td class="px-6 py-4 text-center text-sm border-r border-gray-300 bg-yellow-500">
|
||||
<p class="text-white">Pending</p>
|
||||
</td>
|
||||
|
||||
<td class="px-6 py-4">
|
||||
<div class="w-full flex justify-center items-center">
|
||||
<button class="flex justify-center items-center gap-2 px-3 py-1 rounded-md bg-osiblue text-white border border-osiblue cursor-pointer hover:bg-white hover:text-osiblue duration-300">
|
||||
Receipt
|
||||
<img src="{% static 'images/icons/download.png' %}" class="w-[28px]">
|
||||
</button>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
|
||||
<tr>
|
||||
<td class="px-6 py-4 text-center text-sm border-r border-gray-300">
|
||||
<p class="text-slate-800">3</p>
|
||||
</td>
|
||||
|
||||
<td class="px-6 py-4 text-center text-sm border-r border-gray-300">
|
||||
<p class="text-slate-800">Premium Osimenu</p>
|
||||
</td>
|
||||
|
||||
<td class="px-6 py-4 text-center text-sm border-r border-gray-300">
|
||||
<p class="text-slate-800">$200</p>
|
||||
</td>
|
||||
|
||||
<td class="px-6 py-4 text-center text-sm border-r border-gray-300 bg-green-700">
|
||||
<p class="text-white">Completed</p>
|
||||
</td>
|
||||
|
||||
<td class="px-6 py-4">
|
||||
<div class="w-full flex justify-center items-center">
|
||||
<button class="flex justify-center items-center gap-2 px-3 py-1 rounded-md bg-osiblue text-white border border-osiblue cursor-pointer hover:bg-white hover:text-osiblue duration-300">
|
||||
Receipt
|
||||
<img src="{% static 'images/icons/download.png' %}" class="w-[28px]">
|
||||
</button>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
{% endblock %}
|
@ -1,52 +0,0 @@
|
||||
{% extends "customer_main.html" %}
|
||||
{%load static%}
|
||||
{% block content %}
|
||||
|
||||
<div class="w-full px-5 s:px-9 flex flex-col gap-5">
|
||||
<div class="w-full bg-white rounded-md h-fit shadow-md p-5">
|
||||
<h1 class="text-secondosiblue text-[30px] font-semibold">Solutions</h1>
|
||||
|
||||
<div class="w-full mt-4 flex flex-wrap gap-5 items-center">
|
||||
<div class="px-5 py-3 bg-osiblue rounded-md shadow-md">
|
||||
<img src="{% static 'images/ositcom_logos/osimenuwhite.png' %}" class="w-[150px]">
|
||||
</div>
|
||||
|
||||
<div class="px-5 py-3 bg-osiblue rounded-md shadow-md">
|
||||
<img src="{% static 'images/ositcom_logos/osicardwhite.png' %}" class="w-[150px]">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="w-full bg-white rounded-md h-fit shadow-md p-5">
|
||||
<h1 class="text-secondosiblue text-[30px] font-semibold">Hosting Plans</h1>
|
||||
|
||||
<div class="w-full mt-4 flex flex-wrap gap-5 items-center">
|
||||
<div class="w-[230px] border border-osiblue rounded-md flex justify-center items-center text-osiblue px-5 py-2">
|
||||
<p>Shared Hosting</p>
|
||||
</div>
|
||||
|
||||
<div class="w-[230px] border border-osiblue rounded-md flex justify-center items-center text-osiblue px-5 py-2">
|
||||
<p>Cloud VPS Hosting</p>
|
||||
</div>
|
||||
|
||||
<div class="w-[230px] border border-osiblue rounded-md flex justify-center items-center text-osiblue px-5 py-2">
|
||||
<p>Dedicated CPU Servers</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="w-full bg-white rounded-md h-fit shadow-md p-5">
|
||||
<h1 class="text-secondosiblue text-[30px] font-semibold">Domain Name Registration</h1>
|
||||
|
||||
<div class="w-full bg-gray-100 rounded-md px-5 py-3 shadow-md mt-4">
|
||||
<div class="w-fit relative">
|
||||
<input type="text" class="px-3 py-2 bg-white border border-gray-200 rounded-md w-[300px]" placeholder="Search...">
|
||||
<div class="absolute px-3 right-0 top-0 inset-y-0 text-secondosiblue flex justify-center items-center">
|
||||
<i class="fa fa-search"></i>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{% endblock %}
|
@ -0,0 +1,340 @@
|
||||
{% extends "customer_main.html" %}
|
||||
{%load static%}
|
||||
{% block content %}
|
||||
|
||||
|
||||
<style>
|
||||
.selectedProductCategory {
|
||||
color: white;
|
||||
font-weight: bolder;
|
||||
}
|
||||
</style>
|
||||
|
||||
|
||||
|
||||
<div class="w-full px-5 s:px-9 flex flex-col gap-3">
|
||||
<div class="w-full bg-white rounded-md h-fit shadow-md p-5">
|
||||
<div
|
||||
class="w-full bg-secondosiblue shadow-md rounded-md px-5 py-5 flex flex-wrap items-center gap-8 text-fifthosiblue text-xl uppercase">
|
||||
<p class="selectedProductCategory cursor-pointer" id="solutions">Solutions</p>
|
||||
|
||||
<p class="cursor-pointer" id="hostingSolutions">Cloud Hosting</p>
|
||||
</div>
|
||||
|
||||
<div class="w-full flex flex-col gap-10 mt-10" id="solutionsContainer">
|
||||
<div class="w-full p-5 bg-gray-50 border-gray-100 shadow-md">
|
||||
<div class="flex justify-between items-center">
|
||||
<img src="{% static 'images/ositcom_logos/osimenublue.png' %}" class="w-[180px]">
|
||||
|
||||
<a href="{% url 'osimenuplans' %}">
|
||||
<button
|
||||
class="bg-osiblue border border-osiblue text-white px-5 py-2 rounded-md cursor-pointer hover:bg-white hover:text-osiblue duration-300">More
|
||||
Details</button>
|
||||
</a>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="w-full grid grid-cols-3 gap-5 mt-20">
|
||||
<div
|
||||
class="w-full p-9 border border-gray-200 flex flex-col items-center gap-5 rounded-t-md bg-white">
|
||||
<p class="text-secondosiblue uppercase font-poppinsBold text-3xl text-center">Basic</p>
|
||||
|
||||
<div class="w-full flex flex-col justify-center items-center">
|
||||
<p class="text-osiblue font-poppinsLight text-2xl font-semibold">$0</p>
|
||||
<p class="text-gray-500">monthly/restaurant</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="relative">
|
||||
<div
|
||||
class="w-full px-5 py-3 text-white text-center font-semibold text-xl bg-osiblue rounded-t-md absolute top-[-50px]">
|
||||
<p>Best Value</p>
|
||||
</div>
|
||||
|
||||
<div
|
||||
class="w-full p-9 border border-gray-200 flex flex-col items-center gap-5 rounded-b-md bg-white">
|
||||
<p class="text-secondosiblue uppercase font-poppinsBold text-3xl text-center">Standard</p>
|
||||
|
||||
<div class="w-full flex flex-col justify-center items-center">
|
||||
<p class="text-osiblue font-poppinsLight text-2xl font-semibold">$89</p>
|
||||
<p class="text-gray-500">monthly/restaurant</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div
|
||||
class="w-full p-9 border border-gray-200 flex flex-col items-center gap-5 rounded-t-md bg-white">
|
||||
<p class="text-secondosiblue uppercase font-poppinsBold text-3xl text-center">Premium</p>
|
||||
|
||||
<div class="w-full flex flex-col justify-center items-center">
|
||||
<p class="text-osiblue font-poppinsLight text-2xl font-semibold">$169</p>
|
||||
<p class="text-gray-500">monthly/restaurant</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- <div class="w-full p-5 bg-gray-50 border-gray-100 shadow-md">
|
||||
<div class="flex justify-between items-center">
|
||||
<img src="{% static 'images/ositcom_logos/osicardblue.png' %}" class="w-[180px]">
|
||||
|
||||
<button
|
||||
class="bg-osiblue border border-osiblue text-white px-5 py-2 rounded-md cursor-pointer hover:bg-white hover:text-osiblue duration-300">More
|
||||
Details</button>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="w-full grid grid-cols-3 gap-5 mt-20">
|
||||
<div
|
||||
class="w-full p-9 border border-gray-200 flex flex-col items-center gap-5 rounded-t-md bg-white">
|
||||
<p class="text-secondosiblue uppercase font-poppinsBold text-3xl text-center">Basic</p>
|
||||
|
||||
<div class="w-full flex flex-col justify-center items-center">
|
||||
<p class="text-osiblue font-poppinsLight text-2xl font-semibold">$0</p>
|
||||
<p class="text-gray-500">monthly/restaurant</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="relative">
|
||||
<div
|
||||
class="w-full px-5 py-3 text-white text-center font-semibold text-xl bg-osiblue rounded-t-md absolute top-[-50px]">
|
||||
<p>Best Value</p>
|
||||
</div>
|
||||
|
||||
<div
|
||||
class="w-full p-9 border border-gray-200 flex flex-col items-center gap-5 rounded-b-md bg-white">
|
||||
<p class="text-secondosiblue uppercase font-poppinsBold text-3xl text-center">Standard</p>
|
||||
|
||||
<div class="w-full flex flex-col justify-center items-center">
|
||||
<p class="text-osiblue font-poppinsLight text-2xl font-semibold">$89</p>
|
||||
<p class="text-gray-500">monthly/restaurant</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div
|
||||
class="w-full p-9 border border-gray-200 flex flex-col items-center gap-5 rounded-t-md bg-white">
|
||||
<p class="text-secondosiblue uppercase font-poppinsBold text-3xl text-center">Premium</p>
|
||||
|
||||
<div class="w-full flex flex-col justify-center items-center">
|
||||
<p class="text-osiblue font-poppinsLight text-2xl font-semibold">$169</p>
|
||||
<p class="text-gray-500">monthly/restaurant</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div> -->
|
||||
</div>
|
||||
|
||||
|
||||
<div class="w-full flex flex-col gap-10 mt-10 hidden" id="hostingSolutionsContainer">
|
||||
<div class="w-full p-5 bg-gray-50 border-gray-100 shadow-md">
|
||||
<div class="flex justify-between items-center">
|
||||
<p class="font-poppinsExtraBold text-2xl text-osiblue">Shared Hosting</p>
|
||||
|
||||
<button
|
||||
class="bg-osiblue border border-osiblue text-white px-5 py-2 rounded-md cursor-pointer hover:bg-white hover:text-osiblue duration-300">More
|
||||
Details</button>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="w-full grid grid-cols-3 gap-5 mt-20">
|
||||
<div
|
||||
class="w-full p-9 border border-gray-200 flex flex-col items-center gap-5 rounded-t-md bg-white">
|
||||
<p class="text-secondosiblue uppercase font-poppinsBold text-3xl text-center">Shared Basic</p>
|
||||
|
||||
<div class="w-full flex flex-col justify-center items-center">
|
||||
<p class="text-osiblue font-poppinsLight text-2xl font-semibold">80%</p>
|
||||
<p class="text-osiblue font-poppinsLight text-2xl font-semibold">$2.40/month</p>
|
||||
<p class="text-gray-500">Regular Price: $12.00/month</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="relative">
|
||||
<div
|
||||
class="w-full px-5 py-3 text-white text-center font-semibold text-xl bg-osiblue rounded-t-md absolute top-[-50px]">
|
||||
<p>Best Value</p>
|
||||
</div>
|
||||
|
||||
<div
|
||||
class="w-full p-9 border border-gray-200 flex flex-col items-center gap-5 rounded-b-md bg-white">
|
||||
<p class="text-secondosiblue uppercase font-poppinsBold text-3xl text-center">Shared Plus
|
||||
</p>
|
||||
|
||||
<div class="w-full flex flex-col justify-center items-center">
|
||||
<p class="text-osiblue font-poppinsLight text-2xl font-semibold">80%</p>
|
||||
<p class="text-osiblue font-poppinsLight text-2xl font-semibold">$3.50/month</p>
|
||||
<p class="text-gray-500">Regular Price: $17.50/month</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div
|
||||
class="w-full p-9 border border-gray-200 flex flex-col items-center gap-5 rounded-t-md bg-white">
|
||||
<p class="text-secondosiblue uppercase font-poppinsBold text-3xl text-center">Shared Power</p>
|
||||
|
||||
<div class="w-full flex flex-col justify-center items-center">
|
||||
<p class="text-osiblue font-poppinsLight text-2xl font-semibold">80%</p>
|
||||
<p class="text-osiblue font-poppinsLight text-2xl font-semibold">$4.80/month</p>
|
||||
<p class="text-gray-500">Regular Price: $24.00/month</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="w-full p-5 bg-gray-50 border-gray-100 shadow-md">
|
||||
<div class="flex justify-between items-center">
|
||||
<p class="font-poppinsExtraBold text-2xl text-osiblue">Cloud VPS Hosting</p>
|
||||
|
||||
<button
|
||||
class="bg-osiblue border border-osiblue text-white px-5 py-2 rounded-md cursor-pointer hover:bg-white hover:text-osiblue duration-300">More
|
||||
Details</button>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="w-full grid grid-cols-4 gap-5 mt-20">
|
||||
<div
|
||||
class="w-full p-9 border border-gray-200 flex flex-col items-center gap-5 rounded-t-md bg-white">
|
||||
<p class="text-secondosiblue uppercase font-poppinsBold text-3xl text-center">OSICLOUD 1</p>
|
||||
|
||||
<div class="w-full flex flex-col justify-center items-center">
|
||||
<p class="text-osiblue font-poppinsLight text-2xl font-semibold">30%</p>
|
||||
<p class="text-osiblue font-poppinsLight text-2xl font-semibold">$46.16/month</p>
|
||||
<p class="text-gray-500">Regular Price: $65.95/month</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="relative">
|
||||
<div
|
||||
class="w-full px-5 py-3 text-white text-center font-semibold text-xl bg-osiblue rounded-t-md absolute top-[-50px]">
|
||||
<p>Best Value</p>
|
||||
</div>
|
||||
|
||||
<div
|
||||
class="w-full p-9 border border-gray-200 flex flex-col items-center gap-5 rounded-b-md bg-white">
|
||||
<p class="text-secondosiblue uppercase font-poppinsBold text-3xl text-center">OSICLOUD 2</p>
|
||||
|
||||
<div class="w-full flex flex-col justify-center items-center">
|
||||
<p class="text-osiblue font-poppinsLight text-2xl font-semibold">30%</p>
|
||||
<p class="text-osiblue font-poppinsLight text-2xl font-semibold">$53.86/month</p>
|
||||
<p class="text-gray-500">Regular Price: $76.95/month</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div
|
||||
class="w-full p-9 border border-gray-200 flex flex-col items-center gap-5 rounded-t-md bg-white">
|
||||
<p class="text-secondosiblue uppercase font-poppinsBold text-3xl text-center">OSICLOUD 3</p>
|
||||
|
||||
<div class="w-full flex flex-col justify-center items-center">
|
||||
<p class="text-osiblue font-poppinsLight text-2xl font-semibold">30%</p>
|
||||
<p class="text-osiblue font-poppinsLight text-2xl font-semibold">$69.26/month</p>
|
||||
<p class="text-gray-500">Regular Price: $98.95/month</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div
|
||||
class="w-full p-9 border border-gray-200 flex flex-col items-center gap-5 rounded-t-md bg-white">
|
||||
<p class="text-secondosiblue uppercase font-poppinsBold text-3xl text-center">OSICLOUD 4</p>
|
||||
|
||||
<div class="w-full flex flex-col justify-center items-center">
|
||||
<p class="text-osiblue font-poppinsLight text-2xl font-semibold">30%</p>
|
||||
<p class="text-osiblue font-poppinsLight text-2xl font-semibold">$107.76/month</p>
|
||||
<p class="text-gray-500">Regular Price: $153.95/month</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="w-full p-5 bg-gray-50 border-gray-100 shadow-md">
|
||||
<div class="flex justify-between items-center">
|
||||
<p class="font-poppinsExtraBold text-2xl text-osiblue">Dedicated CPU Servers</p>
|
||||
|
||||
<button
|
||||
class="bg-osiblue border border-osiblue text-white px-5 py-2 rounded-md cursor-pointer hover:bg-white hover:text-osiblue duration-300">More
|
||||
Details</button>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="w-full grid grid-cols-4 gap-5 mt-20">
|
||||
<div
|
||||
class="w-full p-9 border border-gray-200 flex flex-col items-center gap-5 rounded-t-md bg-white">
|
||||
<p class="text-secondosiblue uppercase font-poppinsBold text-3xl text-center">DEDICATED 1</p>
|
||||
|
||||
<div class="w-full flex flex-col justify-center items-center">
|
||||
<p class="text-osiblue font-poppinsLight text-2xl font-semibold">30%</p>
|
||||
<p class="text-osiblue font-poppinsLight text-2xl font-semibold">$103.06/month</p>
|
||||
<p class="text-gray-500">Regular Price: $143.95/month</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="relative">
|
||||
<div
|
||||
class="w-full px-5 py-3 text-white text-center font-semibold text-xl bg-osiblue rounded-t-md absolute top-[-50px]">
|
||||
<p>Best Value</p>
|
||||
</div>
|
||||
|
||||
<div
|
||||
class="w-full p-9 border border-gray-200 flex flex-col items-center gap-5 rounded-b-md bg-white">
|
||||
<p class="text-secondosiblue uppercase font-poppinsBold text-3xl text-center">DEDICATED 2
|
||||
</p>
|
||||
|
||||
<div class="w-full flex flex-col justify-center items-center">
|
||||
<p class="text-osiblue font-poppinsLight text-2xl font-semibold">30%</p>
|
||||
<p class="text-osiblue font-poppinsLight text-2xl font-semibold">$127.16/month</p>
|
||||
<p class="text-gray-500">Regular Price: $184.95/month</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div
|
||||
class="w-full p-9 border border-gray-200 flex flex-col items-center gap-5 rounded-t-md bg-white">
|
||||
<p class="text-secondosiblue uppercase font-poppinsBold text-3xl text-center">DEDICATED 3</p>
|
||||
|
||||
<div class="w-full flex flex-col justify-center items-center">
|
||||
<p class="text-osiblue font-poppinsLight text-2xl font-semibold">30%</p>
|
||||
<p class="text-osiblue font-poppinsLight text-2xl font-semibold">$173.63/month</p>
|
||||
<p class="text-gray-500">Regular Price: $252.95/month</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div
|
||||
class="w-full p-9 border border-gray-200 flex flex-col items-center gap-5 rounded-t-md bg-white">
|
||||
<p class="text-secondosiblue uppercase font-poppinsBold text-3xl text-center">DEDICATED 4</p>
|
||||
|
||||
<div class="w-full flex flex-col justify-center items-center">
|
||||
<p class="text-osiblue font-poppinsLight text-2xl font-semibold">30%</p>
|
||||
<p class="text-osiblue font-poppinsLight text-2xl font-semibold">$265.76/month</p>
|
||||
<p class="text-gray-500">Regular Price: $374.95/month</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<script>
|
||||
const solutionsBtn = document.getElementById('solutions');
|
||||
const hostingBtn = document.getElementById('hostingSolutions');
|
||||
|
||||
const solutionsContainer = document.getElementById('solutionsContainer');
|
||||
const hostingContainer = document.getElementById('hostingSolutionsContainer');
|
||||
|
||||
solutionsBtn.addEventListener('click', () => {
|
||||
solutionsContainer.classList.remove('hidden');
|
||||
hostingContainer.classList.add('hidden');
|
||||
hostingBtn.classList.remove('selectedProductCategory');
|
||||
solutions.classList.add('selectedProductCategory');
|
||||
});
|
||||
|
||||
hostingBtn.addEventListener('click', () => {
|
||||
solutionsContainer.classList.add('hidden');
|
||||
hostingContainer.classList.remove('hidden');
|
||||
solutions.classList.remove('selectedProductCategory');
|
||||
hostingBtn.classList.add('selectedProductCategory');
|
||||
});
|
||||
</script>
|
||||
|
||||
{% endblock %}
|
@ -0,0 +1,46 @@
|
||||
{% extends "customer_main.html" %}
|
||||
{%load static%}
|
||||
|
||||
{% block modules_section %}
|
||||
<!-- This block is intentionally left empty to exclude the modules section -->
|
||||
{% endblock modules_section %}
|
||||
|
||||
{% block content %}
|
||||
|
||||
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
|
||||
|
||||
<p id="itemId" class="hidden">{{item.id}}</p>
|
||||
|
||||
|
||||
<div class="w-full px-5 s:px-9 flex flex-col gap-5 mt-5 font-poppinsLight">
|
||||
<div class="w-full h-fit bg-white rounded-md shadow-md">
|
||||
<div class="grid grid-cols-1 xxlg1:grid-cols-2">
|
||||
<div
|
||||
class="w-full hidden xxlg1:flex flex-col items-center justify-center rounded-l-md h-full bg-osiblue bg-opacity-70 p-9 gap-8 relative overflow-hidden">
|
||||
</div>
|
||||
|
||||
|
||||
<!-- EMBEDDED PAYMENT FORM -->
|
||||
<div class="p-5">
|
||||
<div id="paymentContent">
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<!---------------------- JS SCRIPTS -------------------->
|
||||
<script type="text/javascript" src='{% static "js/customer_dashboard/payment.js" %}'></script>
|
||||
|
||||
<script src="https://code.jquery.com/jquery-3.6.0.slim.min.js"
|
||||
integrity="sha256-u7e5khyithlIdTpu22PHhENmPcRdFiHRjhAuHcs05RI=" crossorigin="anonymous"></script>
|
||||
|
||||
<script src="https://cdn.jsdelivr.net/npm/bootstrap@4.5.2/dist/js/bootstrap.min.js" crossorigin="anonymous"></script>
|
||||
|
||||
<script src="https://creditlibanais-netcommerce.gateway.mastercard.com/static/checkout/checkout.min.js"></script>
|
||||
|
||||
|
||||
{% endblock %}
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue