-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpay.php
More file actions
62 lines (58 loc) · 2.67 KB
/
pay.php
File metadata and controls
62 lines (58 loc) · 2.67 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Payment and Shipping</title>
<link rel="stylesheet" href="pay.css">
</head>
<body>
<div class="container">
<!-- <nav class="tabs">
<div class="tab"><a href="land.html">Home page</a></div>
<div class="tab">Shipping details</div>
<div class="tab active">Payment method</div>
</nav> -->
<br><br>
<section class="payment-method">
<div class="payment-section">
<div class="card">
<img src="card.gif" alt="Card Image">
</div>
<div class="payment-details">
<h3>Payment details</h3>
<form action="done.inc.php" method="post">
<div class="field input">
<label class ="required" for="cardholder">CARDHOLDER NAME</label>
<input type="text" name="cardholder" id="cardholder" required>
</div>
<div class="field input">
<label for="cardnumber">CARD NUMBER</label>
<input type="text" name="cardnumber" id="cardnumber" required >
</div>
<div class="field input">
<label for="expirymonth">EXPIRY MONTH</label>
<input type="text" name="expirymonth" id="expirymonth" >
</div>
<div class="field input">
<label for="expiryyear">EXPIRY YEAR</label>
<input type="text" name="expiryyear" id="expiryyear" >
</div>
<div class="field input">
<label for="cvv">CVV</label>
<input type="text" name="cvv" id="cvv" >
</div>
<div class="field input">
<label for="amount">Payment amount</label>
<input type="text" name="amount" id="amount" >
</div>
<div class="field">
<a href="paid.php"> <input type="submit" class="btn" background-color = "red" name="pay"></a>
</div>
</form>
</div>
</div>
</section>
<hr>
</div>
</body>