-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcheckOut.html
More file actions
149 lines (146 loc) · 5.88 KB
/
checkOut.html
File metadata and controls
149 lines (146 loc) · 5.88 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
143
144
145
146
147
148
149
<!DOCTYPE html>
<html lang=""en">
<head>
<title>BookHome - Check Out </title>
<meta charset=""utf-8>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<header>
<div class="logo">
<img src="images/book_home_logo_with_bg.svg">
<h1>BookHome</h1>
</div>
</header>
<main>
<!--NAVIGATION BAR-->
<div id="navTop" style="position:sticky; top:0; z-index:10;" class="nav-top">
<nav class="nav-top container">
<ul>
<li><a href="index.html">Home</a></li>
<li class="dropdown">
<a href="#" class="dropbtn">Books</a>
<div class="dropdown-content">
<a href="deals.html">Deals</a>
<a href="fiction.html">Fiction</a>
<a href="nonFiction.html">Non-Fiction</a>
</div>
</li>
<li><a href="aboutUs.html">About Us</a></li>
<li class="menu">
<a href="javascript:void(0);" onclick="navBarMinimize()"><img src="images/menu_icon.svg" alt="menu icon"></a>
</li>
</ul>
<div class="nav-right">
<div class="search-bar">
<input type="text" placeholder="Search">
<button><img src="images/search_icon.svg" alt="search icon"></button>
</div>
<div id="not-login" class="login-icon">
<a href="logIn.html">Log-in/Sign-up</a>
</div>
<div class="shopping-cart">
<a href="shoppingCart.html"><img src="images/shopping_cart_icon.svg" alt=" shopping cart"></a>
</div>
</div>
</nav>
</div>
<!--MAIN CONTENTS-->
<section class="checkout-view content">
<h2 class="section-headers">Checkout</h2>
<div class="container">
<div class="checkout">
<form id="checkoutForm" method="post" >
<div class="address-details container background-layout product-info">
<h3>Enter Address Details</h3>
<div>
<p>Full name</p>
<input>
</div>
<div>
<p>Phone number</p>
<input>
</div>
<div>
<p>Email address</p>
<input>
</div>
<div>
<p>House address</p>
<input placeholder="No, 12 Jalan Kuching, Bandar Sunway 40198, Selangor, Malaysia">
</div>
<div class="payment-info">
<h3>Payment Method</h3>
<!--user may select which payment method to use-->
<div>
<select id="payment-method">
<option>MASTERCARD</option>
<option>VISA</option>
<option>PAYPAL</option>
</select>
</div>
<div>
<p>Card details</p>
<input>
</div>
</div>
</div>
</form>
</div>
<div class="checkout-total background-layout product-info">
<h3>Payment Amount</h3>
<p>RM21.89</p>
<button type="submit" class="button">
<a href="#" class="button" onclick="checkoutSubmit()">Pay</a>
</button>
</div>
</div>
<!--POP UP MESSAGE AFTER FORM SUBMITTED-->
<div id="popUp" class="popup">
<div class="popup-content">
<h2 id="popupMsgHead">Welcome </h2>
<div id="popupMsg">blank</div>
<span class="close button">OK</span>
</div>
</div>
</section>
</main>
<footer>
<!--BOTTOM NAVIGATION BAR-->
<nav class="bottom container">
<div class="col about-us">
<h4><a href="aboutUs.html">About Us</a></h4>
</div>
<div class="col book-nav">
<h4>Books</h4>
<ul>
<li><a href="deals.html">Deals</a></li>
<li><a href="fiction.html">Fiction</a></li>
<li><a href="nonFiction.html">Non-Fiction</a></li>
</ul>
</div>
<div class="col contact-us">
<h4><a href="aboutUs.html#ConUs">Contact Us</a></h4>
<ul>
<li class="newsletter">
<p><i>Connect with our newsletter</i></p>
<div>
<input class="newsletter" type="text" placeholder="Enter your email">
</div>
</li>
<li>
<ul class="social-media">
<li><a href="https://www.facebook.com"><img src="images/facebook.svg" alt="Facebook"></a></li>
<li><a href="https://www.instagram.com/?hl=en"><img src="images/instagram.svg" alt="Instagram"></a></li>
<li><a href="https://twitter.com/?lang=en"><img src="images/twitter.svg" alt="Twitter"></a></li>
</ul>
</li>
</ul>
</div>
</nav>
<br style="clear:both;">
<span><small><i>copyright © 2022 BookHome</i></small></span>
</footer>
<script src="js/script.js"></script>
</body>
</html>