Xenesis / xenesis-html /ticket.html
thejagstudio's picture
Upload 1159 files
05dddec verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0,maximum-scale=1.0, minimum-scale=1.0" />
<title>Xenesis | Tickets</title>
<script src="/static/tailwind.js"></script>
<link rel="stylesheet" href="/static/tailwind.css" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.3/font/bootstrap-icons.css" />
<link rel="stylesheet" href="/static/css/style.css" />
<link rel="icon" href="/static/logoCus.png" />
</head>
<body>
<!-- Laptop | Tablet Screen -->
<div class="md:block hidden">
<nav class="flex items-center overflow-visible justify-between text-white fixed w-full top-0 pt-[calc(2vh)] pb-10 px-[calc(3vh)] z-50 transition-all duration-300" id="navbar">
<a href="/">
<img src="/static/logoCus.png" class="h-16 w-auto" />
</a>
<ul class="md:flex items-center hidden">
<li class="mx-[calc(2vh)] py-2 font-semibold text-[calc(3vh)] hover:text-[#bc85ff] transition-all duration-300 border-transparent border-4 hover:border-b-[#bc85ff]"><a href="/">Home</a></li>
<li class="mx-[calc(2vh)] py-2 font-semibold text-[calc(3vh)] hover:text-[#bc85ff] transition-all duration-300 border-transparent border-4 hover:border-b-[#bc85ff]"><a href="/events">Events</a></li>
<li class="mx-[calc(2vh)] py-2 font-semibold text-[calc(3vh)] hover:text-[#bc85ff] transition-all duration-300 border-transparent border-4 hover:border-b-[#bc85ff]"><a href="/aboutus">About Us</a></li>
<li class="mx-[calc(2vh)] py-2 font-semibold text-[calc(3vh)] hover:text-[#bc85ff] transition-all duration-300 border-transparent border-4 hover:border-b-[#bc85ff]"><a href="/faqs">FAQs</a></li>
{% if isUser == False %}
<li class="mx-[calc(2vh)] py-2 font-semibold text-[calc(3vh)] hover:text-[#bc85ff] transition-all duration-300 border-transparent border-4 hover:border-b-[#bc85ff]"><a href="/login">Login</a></li>
<li class="mx-[calc(2vh)] py-2 font-semibold text-[calc(3vh)] hover:text-[#bc85ff] transition-all duration-300 border-transparent border-4 hover:border-b-[#bc85ff]"><a href="/register">Register</a></li>
{%else%}
{% if isVolunteer == True%}
<li class="mx-[calc(2vh)] py-2 font-semibold text-[calc(3vh)] hover:text-[#bc85ff] transition-all duration-300 border-transparent border-4 hover:border-b-[#bc85ff]"><a href="/ticketVerifer">Verifer</a></li>
{%endif%}
<li class="mx-[calc(2vh)] py-2 font-semibold text-[calc(3vh)] hover:text-[#bc85ff] transition-all duration-300 border-transparent border-4 hover:border-b-[#bc85ff]"><a href="/myTicket">My Tickets</a></li>
<li class="mx-[calc(2vh)] py-2 w-14"></li>
{%endif%}
</ul>
</nav>
{% if isUser == True %}
<div class="fixed right-10 top-6 z-[999] flex items-center justify-center gap-4 px-[calc(2vh)]">
<img src="/static/avatars/{{profilePic}}.png" alt="" class="w-[50px] h-[50px] rounded-full object-cover cursor-pointer bg-slate-300" onclick="toggleProfileDropdown()" />
<div class="absolute bg-slate-600 top-16 right-0 w-full min-w-[200px] rounded-md z-[999] h-0 overflow-hidden transition-all duration-300" id="profile-dropdown">
<p class="w-full px-4 text-white"><i class="bi bi-person mr-2.5"></i>{{userName}}</p>
<hr class="w-full my-2" />
<a href="/logout" class="">
<p class="w-full px-4 text-white"><i class="bi bi-box-arrow-right mr-2.5"></i>Logout</p>
</a>
</div>
</div>
{%endif%}
<section class="bg-gray-50 pb-16 pt-32 tails-selected-element outline-none radial-gradient-container w-full h-full bg-gradient-to-b from-[#221e60] to-[#240a34] z-10">
<div class="px-8 mx-auto sm:px-10 lg:px-12 max-w-7xl">
<div class="max-w-2xl mx-auto text-center my-5">
<h2 class="text-3xl font-semibold tracking-tight text-white sm:text-4xl lg:text-5xl">Tickets</h2>
</div>
<div class="grid grid-cols-1 gap-4 sm:grid-cols-2 sm:gap-5 lg:grid-cols-3 lg:gap-6 xl:grid-cols-4">
{% for ticket in data%}
<div id="ticket_{{ticket.id}}" class="flex grow flex-col pt-5 border rounded-lg {% if ticket.isPaid == True%}bg-green-500/60{%else%}bg-red-500/60{%endif%} transition-all duration-300">
<div class="flex items-center gap-5 w-full px-4">
<div class="avatar w-[20%] min-w-[20%]">
<img class="rounded-full ring ring-[#ffffff] w-full h-full object-cover bg-slate-500" src="/static/avatars/{{ticket.profilePic}}.png" alt="avatar" />
</div>
<div>
<h3 class="text-lg font-medium text-white dark:text-navy-100">{{ticket.username}}</h3>
<p class="text-gray-300 truncate max-w-[90%]">{{ticket.email}}</p>
<p class="capitalize text-gray-200">Team id : T0123</p>
</div>
</div>
<div class="my-4 px-4">
<h1 class="text-white font-bold text-xl title-truncate">{{ticket.eventName}}</h1>
<p class="text-white">₹ {{ticket.price}}</p>
</div>
<div class="bg-[#2F1D69] text-white text-center p-2 rounded-b-lg font-semibold">
{% if ticket.isPaid == True%}
<button disabled class="outline-none focus:outline-none">Accepted</button>
{%else%}
<button onclick="acceptTicket('{{ticket.id}}',this)" class="outline-none focus:outline-none">Accept</button>
{%endif%}
</div>
</div>
{%endfor%}
</div>
</div>
</section>
</div>
<script>
function acceptTicket(id,element)
{
fetch("/ticketVerifer/", {
method: "POST",
body: JSON.stringify({
id: id
}),
headers: {
"Content-type": "application/json; charset=UTF-8"
}
})
.then(response => response.json())
.then(json => {
console.log(json)
if(json.hasOwnProperty("msg")){
document.getElementById("ticket_"+id).classList.remove("bg-red-500/60")
document.getElementById("ticket_"+id).classList.add("bg-green-500/60")
element.disabled =true
element.innerHTML = "Accepted"
}
else{
alert(json.error)
}
});
}
</script>
<!-- Mobile Screen -->
<div class="block md:hidden">
<!-- Navbar -->
<nav class="flex items-center justify-between text-white fixed w-full top-0 py-[calc(3vh)] px-[calc(3vh)] z-50 transition-all duration-300" id="mobile-navbar">
<a href="/">
<img src="/static/logoCus.png" class="h-14 w-auto" />
</a>
<div class="relative flex items-center justify-center gap-4 lg:hidden">
<!-- Profile Image -->
<img src="/static/avatars/{{profilePic}}.png" alt="" class="w-[45px] h-[45px] rounded-full object-cover bg-slate-300" onclick="toggleProfileDropdown()" />
<!-- Profile -->
<div class="fixed right-10 top-6 z-[999] overflow-visible flex items-center justify-center gap-4 px-[calc(2vh)]">
<div class="absolute bg-white top-16 right-0 w-full min-w-[200px] rounded-md z-[999] h-0 overflow-hidden transition-all duration-300" id="profile-dropdown-mobile">
<p class="w-full px-4 text-white"><i class="bi bi-person mr-2.5"></i>{{userName}}</p>
<hr class="w-full my-2" />
<a href="/logout" class="">
<p class="w-full px-4 text-white"><i class="bi bi-box-arrow-right mr-2.5"></i>Logout</p>
</a>
</div>
</div>
<!-- Menu Toggle Button -->
<button class="text-2xl block lg:hidden !outline-none" onclick="toggleMobileMenu()"><i class="bi bi-list"></i></button>
</div>
<!-- Mobile Menu -->
<div class="absolute top-0 left-full flex flex-col gap-5 items-center justify-center w-screen h-screen z-[999] bg-white bg-opacity-95 transition-all duration-300" id="mobile-menu">
<button class="absolute top-5 right-5 !outline-none" onclick="toggleMobileMenu()"><i class="bi bi-x-lg"></i></button>
<a href="/" class="text-2xl">Home</a>
<a href="/events" class="text-2xl">Events</a>
<a href="#" class="text-2xl">Event Confirm</a>
<a href="/aboutus" class="text-2xl">About Us</a>
<a href="/login" class="text-2xl">Login</a>
<a href="/register" class="text-2xl">Register</a>
</div>
</nav>
<section class="bg-gray-50 pb-16 pt-32 tails-selected-element outline-none radial-gradient-container w-full h-full bg-gradient-to-b from-[#221e60] to-[#240a34] z-10">
<div class="px-8 mx-auto sm:px-10 lg:px-12 max-w-7xl">
<div class="max-w-2xl mx-auto text-center my-5">
<h2 class="text-3xl font-semibold tracking-tight text-white sm:text-4xl lg:text-5xl">Tickets</h2>
</div>
<div class="grid grid-cols-1 gap-4 sm:grid-cols-2 sm:gap-5 lg:grid-cols-3 lg:gap-6 xl:grid-cols-4">
<div class="flex grow flex-col pt-5 border rounded-lg bg-red-500/60">
<div class="flex items-center justify-between gap-5 w-full px-4">
<div class="avatar h-20 w-20">
<img class="rounded-full ring ring-[#ffffff]" src="/static/avatars/0001.png" alt="avatar" />
</div>
<div>
<h3 class="text-lg font-medium text-white dark:text-navy-100">Konnor Guzman</h3>
<p class="text-gray-400">Konnor@gmail.com</p>
</div>
</div>
<div class="my-4 px-4">
<h1 class="text-white font-bold text-xl title-truncate">X-Motion game mania</h1>
<p class="text-white">₹ 100</p>
</div>
<div class="bg-[#2F1D69] text-white text-center p-2 rounded-b-lg font-semibold">
<button>Accept</button>
</div>
</div>
<div class="flex grow flex-col pt-5 border rounded-lg bg-green-500/60">
<div class="flex items-center justify-between gap-5 w-full px-4">
<div class="avatar h-20 w-20">
<img class="rounded-full ring ring-[#ffffff]" src="/static/avatars/0002.png" alt="avatar" />
</div>
<div>
<h3 class="text-lg font-medium text-white dark:text-navy-100">Konnor Guzman</h3>
<p class="text-gray-400">Konnor@gmail.com</p>
</div>
</div>
<div class="my-4 px-4">
<h1 class="text-white font-bold text-xl title-truncate">X-Motion game mania</h1>
<p class="text-white">₹ 100</p>
</div>
<div class="bg-[#2F1D69] text-white text-center p-2 rounded-b-lg font-semibold">
<button>Accept</button>
</div>
</div>
<div class="flex grow flex-col pt-5 border rounded-lg bg-red-500/60">
<div class="flex items-center justify-between gap-5 w-full px-4">
<div class="avatar h-20 w-20">
<img class="rounded-full ring ring-[#ffffff]" src="/static/avatars/0001.png" alt="avatar" />
</div>
<div>
<h3 class="text-lg font-medium text-white dark:text-navy-100">Konnor Guzman</h3>
<p class="text-gray-400">Konnor@gmail.com</p>
</div>
</div>
<div class="my-4 px-4">
<h1 class="text-white font-bold text-xl title-truncate">X-Motion game mania</h1>
<p class="text-white">₹ 100</p>
</div>
<div class="bg-[#2F1D69] text-white text-center p-2 rounded-b-lg font-semibold">
<button>Accept</button>
</div>
</div>
<div class="flex grow flex-col pt-5 border rounded-lg bg-green-500/60">
<div class="flex items-center justify-between gap-5 w-full px-4">
<div class="avatar h-20 w-20">
<img class="rounded-full ring ring-[#ffffff]" src="/static/avatars/0001.png" alt="avatar" />
</div>
<div>
<h3 class="text-lg font-medium text-white dark:text-navy-100">Konnor Guzman</h3>
<p class="text-gray-400">Konnor@gmail.com</p>
</div>
</div>
<div class="my-4 px-4">
<h1 class="text-white font-bold text-xl title-truncate">X-Motion game mania</h1>
<p class="text-white">₹ 100</p>
</div>
<div class="bg-[#2F1D69] text-white text-center p-2 rounded-b-lg font-semibold">
<button>Accept</button>
</div>
</div>
</div>
</div>
</section>
</div>
<!-- Footer -->
<footer class="bg-[#240a34] pt-20">
<div class="md:flex sm:grid sm:grid-cols-2 flex flex-col md:flex-row lg:justify-around justify-center md:gap-10 gap-3 xl:px-32 lg:px-20 md:px-12 px-8 mb-8">
<!-- Social | Logo -->
<div class="flex flex-col md:items-center items-start gap-3">
<img src="/static/logoCus.png" alt="Xenesis" class="lg:w-[140px] w-[110px]" />
<p class="lg:max-w-[200px] md:max-w-[140px] md:text-center text-gray-300">Epic Events organized for ultimate students!</p>
</div>
<!-- Useful Links -->
<div class="pt-4">
<h3 class="font-bold text-white lg:text-xl sm:text-[1.05rem] mb-4 pb-2 relative after:content-&quot;&quot; after:absolute lg:after:left-0 after:left-0 after:bottom-0 md:after:w-[50%] after:w-[100px] after:h-[3px] after:bg-[#9704fe]">Useful Links</h3>
<div class="flex flex-col text-left text-gray-400 gap-1 lg:text-base text-sm">
<a href="/" class="hover:tranwhite hover:text-[#bc85ff] transition-all duration-300">Home</a>
<a href="/event" class="hover:tranwhite hover:text-[#bc85ff] transition-all duration-300">Events</a>
<a href="/aboutus" class="hover:tranwhite hover:text-[#bc85ff] transition-all duration-300">About Us</a>
<a href="/faqs" class="hover:tranwhite hover:text-[#bc85ff] transition-all duration-300">FAQs</a>
</div>
</div>
<!-- Join Us -->
<div class="pt-4">
<h3 class="font-bold text-white lg:text-xl sm:text-[1.05rem] mb-4 pb-2 relative after:content-&quot;&quot; after:absolute after:left-0 after:bottom-0 md:after:w-[50%] after:w-[100px] after:h-[3px] after:bg-[#9704fe]">Contact Us</h3>
<div class="flex flex-col text-left gap-2 text-gray-400 lg:text-base text-sm">
<div class="flex flex-col group cursor-pointer">
<p class="text-[#9740fe]">Join Us:</p>
<a href="mailto:xenesis@ldrp.ac.in" class="text-gray-300 text-sm group-hover:tranwhite transition-all duration-300">xenesis@ldrp.ac.in</a>
</div>
<div class="flex flex-col group cursor-pointer">
<p class="text-[#9740fe]">Phone:</p>
<p class="text-gray-300 text-sm group-hover:tranwhite transition-all duration-300">+91 786 308 5614</p>
</div>
</div>
</div>
<!-- Social Links -->
<div class="md:pt-4 sm:pt-3 pt-4">
<h3 class="font-bold text-white lg:text-xl sm:text-[1.05rem] mb-5 pb-2 relative after:content-&quot;&quot; after:absolute after:left-0 after:bottom-0 md:after:w-[50%] after:w-[100px] after:h-[3px] after:bg-[#9704fe]">Social Links</h3>
<p class="lg:max-w-[250px] md:max-w-[200px] text-gray-300">Get in touch! Find us on any platform.</p>
<div class="flex items-center justify-start lg:gap-5 gap-4 md:mt-4 mt-2">
<a href="https://www.instagram.com/xenesisldrp/" class="text-gray-400 lg:text-xl md:text-lg text-base hover:-tranwhite.5 hover:text-[#9740fe] transition-all duration-300"><i class="bi bi-facebook"></i></a>
<a href="https://twitter.com/xenesisldrp" class="text-gray-400 lg:text-xl md:text-lg text-base hover:-tranwhite.5 hover:text-[#9740fe] transition-all duration-300"><i class="bi bi-twitter"></i></a>
<a href="https://www.facebook.com/xenesisldrp/" class="text-gray-400 lg:text-xl md:text-lg text-base hover:-tranwhite.5 hover:text-[#9740fe] transition-all duration-300"><i class="bi bi-instagram"></i></a>
<a href="#" class="text-gray-400 lg:text-xl md:text-lg text-base hover:-tranwhite.5 hover:text-[#9740fe] transition-all duration-300"><i class="bi bi-youtube"></i></a>
</div>
</div>
</div>
<!-- Copyrights -->
<div class="bg-[#211e60] bg-opacity-20 md:w-fit w-full md:px-24 px-8 md:pr-36 mb-0 clip-copyrights text-gray-300 font-semibold py-8 md:text-xl text-md">&copy; 2023 Xenesis All Rights Registered</div>
</footer>
<!-- FAQ Script -->
<script>
function faqUpdater(element) {
let faqArr = document.getElementsByClassName("faq");
for (let faq = 0; faq < faqArr.length; faq++) {
const elementfaq = faqArr[faq];
if (elementfaq.getElementsByTagName("button")[0] != element) {
elementfaq.getElementsByTagName("div")[0].classList.add("scale-y-0");
elementfaq.getElementsByTagName("div")[0].classList.add("h-0");
elementfaq.getElementsByTagName("div")[0].classList.remove("scale-y-100");
} else {
elementfaq.getElementsByTagName("div")[0].classList.remove("scale-y-0");
elementfaq.getElementsByTagName("div")[0].classList.remove("h-0");
elementfaq.getElementsByTagName("div")[0].classList.add("scale-y-100");
}
}
}
</script>
<script src="/static/js/header.js"></script>
</body>
</html>