-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpayment.html
91 lines (82 loc) · 2.98 KB
/
payment.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
<!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">
<title>Payment</title>
<link rel="stylesheet" href="payment.css">
</head>
<body>
<h1 CLASS="heading">
MYTHERESA
</h1>
<div id="links">
<div><a href="cart.html">Shopping Bag</a></div>
<div><a href="checkout.html">Delivery</a></div>
<div>Payment</div>
</div>
<hr>
<div class="parent2 parent3">
<div>
<h3>PAYMENT METHOD</h3>
<h3>Please select your preferred payment method for this order.</h3>
</div>
</div>
<hr class="line1">
<div class="f parent2">
<div>
<h3>Card</h3>
<h4>Immediate Shipping</h4>
</div>
<div>
<form action="" id="form">
<label for="">Name On Card *</label>
<input type="text" id="fname"/>
<label for="">Card Number</label>
<input type="number" id="lname"/>
<label for="">Expiration Date *</label>
<input type="number" id="email" placeholder="MM/YY"/>
<label for="">CVC / CVV *</label>
<input type="number" id="password" placeholder="CVC/CVV">
<h4>*Required Fields</h4>
</form>
</select>
</div>
</div>
<hr class="line1">
<div class="parent2">
<h3>PayPal</h3>
<h4>Immediate Shipping</h4>
</div>
<hr class="line1">
<div class="parent2 total total1">
<div>
<button class="b1" id="btnb">Back To Delivery</button>
<h4 class="hh">Please note: By clicking this button, all data listed on this page will be erased for security reasons.</h4>
</div>
<div>
<button class="b2" id="pbtn">Pay Now</button>
</div>
</div>
<hr class="line1">
<h3 id="h3">You can also place your order via telephone</h3>
<div class="parent2 total">
<button class="bot1">CALL US<br>
+49 89 127695-101<br>
Argentina: 0800-666-0663<br>
Chile: 800-914-515<br>
Colombia: 01800-518-5268<br>
Mexico: 01-800-099-0703<br>
Peru: 0800-78259<br>
Puerto Rico: 1-787-303-4205<br>
Available 24/7</button>
<button class="bot2">MAIL US<br>
customercare@mytheresa.com<br>
Please note that due to a high amount of requests, we might take a few days to get back to you. We apologize for any inconvenience this may cause.</button>
</div>
</div>
<hr class="line1">
</body>
<script src="./payment.js"></script>
</html>