-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuy.php
More file actions
24 lines (23 loc) · 825 Bytes
/
Copy pathbuy.php
File metadata and controls
24 lines (23 loc) · 825 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<html>
<head>
<link rel="stylesheet" href="./form.css">
</head>
<body>
<div class="login">
<h2><marquee behavior="scroll" direction="left"><font color="white">BUY PLATFORM TICKET</font></marquee></h2>
<form method="post" action="ticket.php">
<select name="platformno">
<option value="1">platform no:1 </option>
<option value="2">platform no:2</option>
<option value="3">platform no:3</option>
<option value="4">platform no:4</option>
<option value="5">platform no:5</option>
</select><br><br>
<input type="text" placeholder="YOUR NAME" name="name"/>
<input type="text" placeholder="NO OF TICKETS" name="quantity"/>
<button type="submit" class="btn btn-primary btn-block btn-large" name="submit">confirm</button>
</form>
</div>
</div>
</body>
</html>