Spaces:
Sleeping
Sleeping
File size: 16,709 Bytes
05dddec |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 |
<!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/[email protected]/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">[email protected]</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">[email protected]</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">[email protected]</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">[email protected]</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-"" 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-"" 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:[email protected]" class="text-gray-300 text-sm group-hover:tranwhite transition-all duration-300">[email protected]</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-"" 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">© 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>
|