-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathorder-confirm.html
50 lines (43 loc) · 1.64 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
<!doctype html>
<html>
<head>
<title>Shop Samsung (demo)</title>
<link rel="stylesheet" href="src/css/styles.css">
<script src="vendor/jquery-3.1.1.min.js"></script>
<script>
$().ready(function() {
var email = sessionStorage.getItem("samsungPayShopDemoEmail");
if (email) {
$("#accountEmail").attr("value", email);
$("#accountPassword").focus();
}
});
</script>
<meta name="viewport" content="initial-scale=1, maximum-scale=1">
</head>
<body>
<nav class="product-filter">
<h1>Shop Samsung</h1>
</nav>
<div id="order-confirmation">
<div class="product-info">
<h1>Thank you for your order!</h1>
<h5>You will receive an 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>