-
Notifications
You must be signed in to change notification settings - Fork 2
/
payment.html
26 lines (25 loc) · 875 Bytes
/
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
<!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 Page</title>
<link rel="stylesheet" href="./styles/payment.css">
</head>
<body>
<div class="payments_main">
<h3>Payments Form</h3>
<div class="payments-form">
<form action="" id="payment-form">
<input type="text" placeholder="Card Number" required>
<input type="text" placeholder="MM/YY" required>
<input type="text" placeholder="CVV" required>
<input type="text" placeholder="Name On Card" required>
<input type="submit" value="CONFIRM ORDER" required>
</form>
</div>
</div>
</body>
<script src="./scripts/payment.js"></script>
</html>