-
Notifications
You must be signed in to change notification settings - Fork 0
/
cart.html
96 lines (88 loc) · 2.98 KB
/
cart.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.1/css/all.min.css"
integrity="sha512-+4zCK9k+qNFUR5X+cKL9EIR+ZOhtIloNl9GIKS57V1MyNsYpYcUrUeQc9vNfzsWfV28IaLL3i96P9sdNyeRssA=="
crossorigin="anonymous"
/>
<title>Cart</title>
</head>
<body>
<nav class="navbar">
<div class="fst_navDiv">
<a class="" href="home.html">CodingSchool</a>
<span class="">Learn and Implement </span>
</div>
<div class="Snd_navDiv">
<ul class="">
<li class=""><a href="home.html" class="a_tag_elm"> Home</a></li>
<li class="">
<a
onclick="document.location='home.html#allcourses'"
class="a_tag_elm"
>Courses</a
>
</li>
<li class="">
<a href="myprofile.html" class="a_tag_elm">My Profile</a>
</li>
</ul>
</div>
<div class="cart">
<a href="cart.html" class="a_tag_elm"
><h2>Cart</h2>
<span id="cartSpan">0</span></a
>
</div>
</nav>
<div class="product_container">
<div class="product_header">
<h5 class="product_title">COURSE</h5>
<h5 class="price">PRICE</h5>
<h5 class="quantity">QUANTITY</h5>
<h5 class="total">TOTAL</h5>
</div>
<div class="products">
<p id="productsPurchaseMessage"></p>
</div>
</div>
<!-- ----------------payment form hmtl-------- -->
<div class="paymentDiv">
<h1><u>Complete Your Payment</u></h1>
<form
class="paymentDivForm"
onsubmit="addingEverythingToCoursesPurchased()"
>
<strong class="CheckOutPayment"> </strong>
<input type="text" placeholder="Name on card" required />
<input type="number" placeholder="Card Number" required />
<input type="month" placeholder="Expiry Month" required />
<input type="password" placeholder="cvv" required />
<div class="paymentBttnDiv">
<button type="submit" class="confirmPaymentButton paymentBttn">
Confirm Payment
</button>
<button type="reset" class="cancelPaymentButton paymentBttn">
Cancel Payment
</button>
</div>
</form>
<footer class="paymentFooter">
<p>
<strong>WARNING-</strong> <br />This Project is for Practice Purpose
so Please <b><u>Don't </u></b> . Fill Your True Card Details If Any
Thing Happens I will Not Be Responsible For it !
</p>
</footer>
</div>
<script src="./CartJavascript/script.js"></script>
<script src="./CartJavascript/cart.js"></script>
<script src="app.js"></script>
</body>
</html>