forked from iamakash-06/UID-Project-Final
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTicketBooking.html
More file actions
142 lines (116 loc) · 4.63 KB
/
Copy pathTicketBooking.html
File metadata and controls
142 lines (116 loc) · 4.63 KB
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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="TicketBooking.css">
<link href='https://fonts.googleapis.com/css?family=Alatsi' rel='stylesheet'>
</head>
<body>
<div class="navbar">
<div class="logo">
<img id="set-img" src="O35LUD0-removebg-preview-removebg-preview.png">
<img src="Reminiscence.png" width="200px">
</div>
<nav>
<ul id="navbar">
<li id="btn2"><a href="index.html">Home</a></li>
<li id="btn2"><a href="login.html">Login</a></li>
<li id="btn2"><a href="index.html">About</a></li>
<li id="btn2"><a onclick="openNav()">Events</a></li>
<li id="btn2"><a href="index.html.person">Contact us</a></li>
<li id="btn2"><a href="registration.html">Register</a></li>
<li ><a href="merch.html">Merchandise</a></li>
</ul>
</nav>
<a href="#karthref"><img id="set-img" src="cart.png"></a>
</div>
<div id="myNav" class="overlay">
<a href="javascript:void(0)" class="closebtn" onclick="closeNav()">×</a>
<div class="overlay-content">
<div id="trouble">
<a href="live_events.html">LIVE EVENTS</a>
<a href="GENERAL GUIDELINES_ JUDGING CRITERIA.html">JUDGING CRITERIA AND GENERAL GUIDELINES</a>
<a href="SCHEDULE1.html">SCHEDULE</a>
</div>
</div>
</div>
<script>
function openNav() {
document.getElementById("myNav").style.width = "100%";
}
function closeNav() {
document.getElementById("myNav").style.width = "0%";
}
</script>
<h1>BOOK YOUR TICKETS NOW !!!</h1>
<div class="split left">
<table class="tbl">
<tr>
<th>AVAILABLE TICKETS</th>
<th>PRICE</th>
<th>NO. OF TICKETS AVAILABLE</th>
<th>Quantity</th>
</tr>
<tr class="a1">
<td>EARLY BIRD</td>
<td class="price">$10.00</td>
<td id="nteb">200</td>
<td><input type="number" value="0" maxlength="2" id="eb" class ="quantity"></td>
</tr>
<tr class="a1">
<td>EARLY BIRD VIP</td>
<td class="price">$20.00</td>
<td id="ntebv">100</td>
<td><input type="number" value="0" id="ebv" class ="quantity"></td>
</tr>
<tr class="a1">
<td>GENERAL ADMISSION</td>
<td class="price">$20.00</td>
<td id="ntga">400</td>
<td><input type="number" value="0" id="ga" class ="quantity"></td>
</tr>
<tr class="a1">
<td>VIP ADMISIION</td>
<td class="price">$30.00</td>
<td id="ntva">100</td>
<td><input type="number" value="0" id="va" class ="quantity"></td>
</tr>
</table>
<br>
<h2>TOTAL PRICE</h2>
<h2 id="total">$0.00</h2>
</div>
<div class="split right">
<form class="form" action="#" name="form" >
<br>
<div class="frm">
<label for="name">Name</label>
<br>
<br>
<input type="text" id="name" name="name" required minlength="4" maxlength="80">
<br>
<br>
<label for="phno">Phone Number</label>
<br>
<br>
<input type="tel" id="phno" name="phno" required>
<span class="err" aria-live="polite"></span>
<br>
<br>
<label for="email">Email ID</label>
<br>
<br>
<input type="email" id="email" name="email" required minlength="10" >
<span class="error" aria-live="polite"></span>
<br>
<br>
</div>
<br>
<br>
<br>
<button id="btn" >PROCEED WITH THE PAYMENT</button>
</form>
</div>
<script src="TICKETBOOKING.js"></script>
<script src="https://unpkg.com/sweetalert/dist/sweetalert.min.js"></script>
</body>
</html>