-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpayment2.html
49 lines (42 loc) · 1.81 KB
/
payment2.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
<!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="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="path/to/font-awesome/css/font-awesome.min.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=PT Mono" />
<link rel="stylesheet" href="./CSS/header.css" />
<link rel="stylesheet" href="./CSS/footer.css" />
<link rel="stylesheet" href="./CSS/payment2.css" />
<title>EPayment</title>
<script src="https://kit.fontawesome.com/b7836bba55.js" crossorigin="anonymous"></script>
</head>
<header id="header"></header>
<body>
<div class="container">
<h3>Payment method</h3>
<p>All transactions are secure and encrypted.</p>
<div class="card">
<h4>CREDIT CARD</h4>
<div class="cardImg">
<img src="./Assets/Visa.png" alt="visa" />
<img src="./Assets/Mastercard.png" alt="visa" />
<img src="./Assets/Discover.png" alt="visa" />
</div>
</div>
<hr />
<form action="">
<input type="text" id="card-number" placeholder="Card Number" />
<input type="text" id="card-name" placeholder="Name on Card" />
<input type="text" id="card-expiry" placeholder="Expiry (MM/YY)" />
<input type="password" id="card-password" placeholder="CVV" />
<input type="submit" name="" id="payment" value="Submit" />
</form>
</div>
<script src="./JS/payment2.js"></script>
</body>
<div id="wrapper"></div>
<script type="module" src="./JS/importedHeader.js"></script>
</html>