-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpayment.html
More file actions
43 lines (41 loc) · 1.4 KB
/
payment.html
File metadata and controls
43 lines (41 loc) · 1.4 KB
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
<!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="payment.css">
<title>Payment Method</title>
</head>
<body>
<div class="container">
<h6>Checkout</h6>
<span>x</span>
<h1>Payment Method</h1>
<form action="/">
<label for="country">Country
<select name="country" id="country">
<option value="germany">germany</option>
<option value="england">england</option>
<option value="india">india</option>
</select>
</label>
<label for="cardno">Card Number
<input type="text" name="cardno" id="cardno" maxlength="19" onkeypress="cardspace()"/>
</label>
<div class="float">
<label for="validtill">Valid till
<input type="text" name="validtill" id="validtill" maxlength="7" onkeypress="addSlashes()"/>
</label>
<label for="cvv">Cvv
<input type="text" name="cvv" id="cvv" maxlength="3"/>
</label></div>
<!-- <label for="checkbox">
<input type="checkbox" name="checkbox" id="checkbox"/>
<p>Payment Address is the same as the Delivery Address</p>
</label> -->
<button class="pay">Pay</button>
</form>
</div> <script src="payment.js"></script>
</body>
</html>