-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcheckout.html
More file actions
130 lines (128 loc) · 6.42 KB
/
checkout.html
File metadata and controls
130 lines (128 loc) · 6.42 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
<!DOCTYPE html>
<html>
<head>
<title>Game Hub - Checkout</title>
<meta name="description" content="The universe of games">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="css/styles.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@48,400,0,0" />
<!-- Hotjar Tracking Code for https://sunny-rabanadas-f0f767.netlify.app/ -->
<script>
(function(h,o,t,j,a,r){
h.hj=h.hj||function(){(h.hj.q=h.hj.q||[]).push(arguments)};
h._hjSettings={hjid:3797572,hjsv:6};
a=o.getElementsByTagName('head')[0];
r=o.createElement('script');r.async=1;
r.src=t+h._hjSettings.hjid+j+h._hjSettings.hjsv;
a.appendChild(r);
})(window,document,'https://static.hotjar.com/c/hotjar-','.js?sv=');
</script>
</head>
<body>
<header>
<section class="header-section">
<div class="header-left">
<nav>
<div class="navbar">
<div class="container nav-container">
<input class="checkbox" type="checkbox" name="" id="" />
<div class="hamburger-lines">
<span class="line line1"></span>
<span class="line line2"></span>
<span class="line line3"></span>
</div>
<div class="menu-items">
<li><a href="index.html" class="nav-active">Home</a></li>
<li><a href="games.html">List of games</a></li>
<li><a href="about.html">About</a></li>
<li><a href="support.html">Support</a></li>
</div>
</div>
</div>
</nav>
<nav class="nav-desktop">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="games.html">List of games</a></li>
<li><a href="about.html" class="nav-active">About</a></li>
<li><a href="support.html">Support</a></li>
</ul>
</nav>
</div>
<div class="header-middle">
<a href="index.html">
<img class="logo" src="/images/GameHub_Logo.png" alt="GameHub_Logo" class="logo"/>
</a>
</div>
<div class="header-right">
<a href="checkout.html" class="shopping-cart"><span class="material-symbols-outlined">
shopping_cart
</span></a>
<a href="games.html" class="button">
<img src="images/search.png" width="25px" alt="Search" />
</a>
<a href="#" class="account-circle"><span class="material-symbols-outlined">
account_circle
</span></a>
</div>
</section>
</header>
<main>
<section class="layout">
<div class="box-half">
<h2>Enter your credit or debit card</h2>
<form action="">
<div style="display: flex; width:100%">
<div style="width: 50%;">
<input type="text" id="firstName" name="firstName" placeholder="CVC" style="width: 100%; box-sizing: border-box; margin-right: 4px;" />
</div>
<div style="width: 50%;">
<input type="text" id="lastName" name="lastName" placeholder="Expiration date (MM/YY)" style="width: 100%; box-sizing: border-box; margin-left: 4px;" />
</div>
</div>
<div>
<input type="email" id="creditcard" name="Creditcard" placeholder="Creditcard number (XXXX XXXX XXXX XXXX)" style="width: 100%; box-sizing: border-box; margin-top: 10px;" />
</div>
</form>
<h2>Returning customer?</h2>
<form action="">
<div style="display: flex; width:100%">
<div style="width: 50%;">
<input type="text" id="firstName" name="firstName" placeholder="First Name" style="width: 100%; box-sizing: border-box; margin-right: 4px;" />
</div>
<div style="width: 50%;">
<input type="text" id="lastName" name="lastName" placeholder="Last Name" style="width: 100%; box-sizing: border-box; margin-left: 4px;" />
</div>
</div>
<div>
<input type="email" id="email" name="email" placeholder="Email" style="width: 100%; box-sizing: border-box; margin-top: 10px;" />
</div>
</form>
</div>
<div style="padding-top: 100px;" class="box-half">
<div class="checkout-summary">
<h3>Subtotal</h3>
<h3>19,99$</h3>
</div>
<div class="checkout-summary">
<h3></h3>
<h3></h3>
</div>
<div class="checkout-summary">
<h2>Totalprice</h2>
<h2></h2>
</div>
<div class="checkout-summary">
<a href="checkout-success.html" class="light-button">Confirm payment</a>
</div>
</div>
</h2>
</section>
</main>
<script src="js/displayCheckoutGames.js"></script>
<footer>
<p>©2022 Game HUB™. All Rights Reserved</p>
</footer>
</body>
</html>