-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpurchase.html
57 lines (57 loc) · 2.71 KB
/
purchase.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
<html>
<head>
<title>MatrixRealm | Purchase</title>
<link rel="stylesheet" href="style.css">
<script type="text/javascript" src="javascript.js"></script>
<link href='https://unpkg.com/[email protected]/css/boxicons.min.css' rel='stylesheet'>
<link rel="icon" href="Images/website logo.png" type="image/png">
</head>
<body>
<!--NavBar-->
<header>
<a href="index.html" class="logo">MatrixRealm</a>
<ul class="nav">
<li><a href=home.html>Home</a></li>
<li><a href=about.html>About</a></li>
<li><a href=games.html>Games</a></li>
<li><a href=tournaments.html>Tournaments</a></li>
</ul>
<div class="action">
<div class="searchbox">
<a href="#"><i class='bx bx-search'></i></i></a>
<input type="text" placeholder="Search Games">
</div>
</div>
<ul class="user">
<li><a href=signup.html><i class='bx bx-user'></i></a></li>
</ul>
</header>
<!--Sign Up-->
<div class="login-page">
<div class="form">
<form class="register-form" method="POST" action="home.html">
<h2><i class="fas fa-lock"></i> Purchasing the Game</h2>
<input type="text" placeholder="Full Name" id="name" required/>
<input type="email" placeholder="Email" id="email" required/>
<input type="text" placeholder="Card Number" id="card" required/>
<input type="text" placeholder="Expiry Date" id="expiry" required/>
<input type="password" placeholder="CVV" id="cvv" required/>
<button type="submit" onclick="purchase()">Purchase</button>
</form>
</div>
</div>
<!--Footer-->
<footer>
<div class="info">
<a href="index.html" class="logo">MatrixRealm</a>
<p><i class='bx bx-copyright'></i>2023 All Rights Reserved</p>
<ul>
<li><a href="https://www.facebook.com/epicgames/"><i class='bx bxl-facebook'></i></a></li>
<li><a href="https://www.instagram.com/epicgames/?hl=en"><i class='bx bxl-instagram'></i></a></li>
<li><a href="https://twitter.com/EpicGames"><i class='bx bxl-twitter'></i></a></li>
<li><a href="https://www.youtube.com/channel/UC5Qk8mWBwtMyEj7iQQYRk1A"><i class='bx bxl-youtube'></i></a></li>
</ul>
</div>
</footer>
</body>
</html>