forked from maheshkk/samsung-shop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
order-confirm.html
55 lines (49 loc) · 2.05 KB
/
order-confirm.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
<!doctype html>
<html>
<head>
<title>Samsung Demo Shop</title>
<link rel="stylesheet" href="src/css/styles.css">
<script src="https://code.jquery.com/jquery-3.1.1.slim.js" crossorigin="anonymous"></script>
<script src="script.js"></script>
</head>
<body>
<nav class="product-filter">
<h1>Shop Samsung</h1>
<div class="sort">
<div class="collection-sort">
<label>Sort by:</label>
<select>
<option value="/">Featured</option>
<option value="/">Best Selling</option>
<option value="/">Alphabetically, A-Z</option>
<option value="/">Alphabetically, Z-A</option>
<option value="/">Price, low to high</option>
<option value="/">Price, high to low</option>
<option value="/">Date, new to old</option>
<option value="/">Date, old to new</option>
</select>
</div>
</div>
</nav>
<div id="order-confirmation">
<div class="product-info">
<h1>Thank you for your order!</h1>
<h5>You will receive order confirmation email shortly.</h5>
</div>
<div class="product-info">
<h6>Do you want to signup for SamsungShop to receive updates on your order?</h6><br>
<div class="login-section" visible="">
<label id="accountEmailLabel">Email</label><br>
<input type="email" id="accountEmail" name="email" placeholder="Email" required="" aria-labelledby="accountEmailLabel" autocomplete="username" value="" autofocus="">
</div>
<div class="row input-row">
<label id="accountPasswordLabel">Password</label><br>
<input type="password" id="accountPassword" name="password" placeholder="Password" required="" aria-labelledby="accountPasswordLabel" autocomplete="current-password">
</div>
<br><div class="product-buy-button">
<h5>SIGN UP</h5>
</div>
</div>
</div>
</body>
</html>