-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcheckout.html
110 lines (109 loc) · 4.34 KB
/
checkout.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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="https://use.typekit.net/gzy8fgh.css" />
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;700&display=swap"/>
<link rel="stylesheet" href="CSS/index.css" />
<link rel="stylesheet" href="CSS/checkout.css" />
<title>Shopping Cart | Rainy Days</title>
<meta name="description" content="Shopping cart. Login. sign up or continue as a guest - Rainy Days"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
</head>
<!-------------------------------------- header --------------------------------------------->
<body>
<div class="top-line"></div>
<div class="body">
<header>
<a href="index.html">
<img class="logo" src="images/RainyDays_Logo.png" alt="rainy days logo"/>
</a>
<div class="topnav">
<div class="favorites item"><img src="images/icons/like.svg" alt="favorites"/></div>
<div class="profile item"><img src="images/icons/profile.svg" alt="profile"/></div>
<div class="cart item"><a href="checkout.html"><img src="images/icons/cart.svg" alt="shopping cart"></a></div>
<div class="search item"><img src="images/icons/search.svg" alt="search"/></div>
</div>
</header>
<!---------------------------- main content --------------------------------------->
<main>
<div class="jacket-container">
<div class="top-bar">
<h1 class="h1-about">Shopping Cart</h1>
<img class="progress-bar" src="images/components/checkout-1.svg" alt="step 1: review shopping cart"/>
</div>
<div class="line"></div>
<div class="info-line">
<p>Product Details</p>
<p class="price">Price</p>
<p>Quantity</p>
<p>Total Price</p>
</div>
<div class="cart-line"></div>
<div class="jacket-specs">
<img class="thumb-2" src="images/jacket_1-1.jpg" alt="men's Forest Jacket"/>
<div>
<p><b>Forest Jacket</b></p>
<p>Size: M</p>
</div>
<p class="price">$54</p>
<img class="quantity" src="images/quantity.svg" />
<p>$54</p>
<div></div>
</div>
<div class="cart-line"></div>
<div class="jacket-specs">
<img class="thumb-2" src="images/jacket_2-1.jpg" alt="Men's Edge Jacket"/>
<div>
<p><b>Edge Jacket</b></p>
<p>Size: M</p>
</div>
<p class="price">$58</p>
<img class="quantity" src="images/quantity.svg" />
<p>$58</p>
<div></div>
</div>
<div class="cart-line"></div>
<div class="sum">
<div></div>
<div>
<p>Total</p>
<p>Shipping</p>
<p><b>Sum Total</b></p>
</div>
<div>
<p>$112</p>
<p>$10</p>
<p><b>$122</b></p>
</div>
</div>
<div class="back-continue">
<a class="back" href="index.html"><b><--Back to Shopping</b></a>
<p class="continue"><b>Continue</b></p>
</div>
</div>
<section class="login">
<h5>Login</h5>
<form action="" method="GET" id="loginForm">
<label for="userName">User Name </label>
<input type="text" name="userName" id="userName" required/>
<label for="password">Password </label>
<input type="password" name="password" id="password" required/>
<div class="formError" id="formError">Username or password is incorrect</div>
<div class="flex">
<div>
<input type="checkbox" name="remember-me" id="checkbox" />
<label for="checkbox">Remember Me</label>
</div>
<p><u>Forgot Password?</u></p>
</div>
<p>Don't have an account?</p>
<p class="signup">Sign Up</p>
<p>or</p>
<a class="signup" href="checkout-2.html">Continue as a Guest</a>
<a class="loginBtn btn-large" href="checkout-2.html">continue</a>
</form>
</section>
</main>
</div>
</body>
</html>