This repository has been archived by the owner on Dec 12, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
purchase.html
117 lines (114 loc) · 5.82 KB
/
purchase.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Purchase</title>
<link rel="stylesheet" href="style/purchase.css">
<link rel="apple-touch-icon" sizes="180x180" href="images/apple-touch-icon.webp">
<link rel="icon" type="image/png" sizes="32x32" href="images/favicon-32x32.webp">
<link rel="icon" type="image/png" sizes="16x16" href="images/favicon-16x16.webp">
<link rel="manifest" href="images/site.webmanifest">
<link rel="mask-icon" href="images/safari-pinned-tab.webp" color="#5bbad5">
<link rel="shortcut icon" href="images/favicon.webp">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="msapplication-config" content="images/browserconfig.xml">
<meta name="theme-color" content="#ffffff">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@48,400,0,0" />
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Ubuntu:wght@300&display=swap" rel="stylesheet">
</head>
<body>
<a href="activites.html">
<button id="back"><span class="material-symbols-outlined">
arrow_back
</span>Go back
</button>
</a>
<section id="wrapper">
<div id="hdiv3">
<form action="get" id="form">
<label for="acdrop">Select activity:</label>
<select name="acdrop" id="acdrop" required>
<option value="Tea Factory">Tea Factory</option>
<option value="Elephant Rescue">Elephant Rescue</option>
<option value="Sigiriya">Sigiriya</option>
</select><br><br>
<label for="ticket">Choice of ticket *:</label>
<select id="ticket" required>
<option value="Local-Child">Local Pass- Child (3 to 12 years)</option>
<option value="Foregin-Child">Foreigner Pass- Child (3 to 12 years)</option>
<option value="Local-Adult">Local Passs- Adult</option>
<option value="Foregin-Adult">Foreigner Pass- Adult</option>
<option value="Annual-Foreign">Annual Pass- Foreign</option>
<option value="Annual-Local">Annual Pass- Local </option>
</select><br><br>
<label for="time">Duration: </label>
<select name="duration" id="time" required>
<option value="3 hours">3 Hrs</option>
<option value="12 hours">1⁄2 day</option>
<option value="24 hours">Full Day</option>
<option value="48 hours">2 Days</option>
</select><br><br>
<label for="number-of-tick">Number of tickets: </label>
<input type="number" id="number-of-tick" min="0"><br><br>
<!-- <label for="extrats">Extras </label><br> -->
<label for="food_token">Number of food tokens: </label>
<input type="number" id="food_token" min="0">
<label style="font-size: 15px;">(optional)</label><br><br><br>
<p id="notice"><b>*Childern under 3 entrance is free</b></p>
<button type="submit" id="submit"><span class="material-symbols-outlined">
add_shopping_cart
</span>
</button>
<button id="fav_add"><span class="material-symbols-outlined">
favorite
</span>
</button>
<button id="show_cart"><span class="material-symbols-outlined">
shopping_cart
</span>
</button><br><br><hr>
<p id="temp"></p>
</form>
</div>
<div class="cart" id="cart">
<div class="image"><img src="images/shopping_cart.svg" alt="shopping cart"></div>
<h1>Cart</h1>
<div id="no_cart">
<p id="nocarttext" style="display: block; margin:auto;">
No items in Cart
</p>
</div>
<table id="out">
</table>
<table id="tot_table">
<th><hr><b><i>Total</i></b></th>
<th><hr><i id="total">Rs.0/=</i></th>
</table>
<button id="close"><span class="material-symbols-outlined">
close
</span>
</button>
<button id="remove"><span class="material-symbols-outlined">
remove_shopping_cart
</span>Clear Cart
</button>
<button id="checkout"><span class="material-symbols-outlined">
shopping_cart_checkout
</span>Check Out
</button>
<button id="loyal"><span class="material-symbols-outlined">
card_membership
</span>Check Loyalty Points
</button>
<button id="order_fav"><span class="material-symbols-outlined">
heart_plus
</span>Order Favourit
</button>
</div>
</section>
<script src="scripts/index.js"></script>
</body>
</html>