forked from lilpixnngub/lilpixnngub.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPaymentPage.html
56 lines (44 loc) · 1.77 KB
/
PaymentPage.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="/View/stylesheet/PaymentPage.css">
<title>Rabinvateseab Music Festival Reserve Ticket</title>
</head>
<body>
<header>
<div class="header">
<h1>Checkout</h1>
<p>Rabinvateseab Festival Music Reservation</p>
</div>
<div class="container">
<p> Payment Method</p>
<form action="#">
<div class="inputInfo">
<div class="input">
<label for="cardno">Card no.</label><br>
<input type="text" id="cardno" name="cardno" class="form-field" placeholder="xxx-xxx-xxx"><br>
</div>
<div class="input">
<label for="Fullname">Name</label><br>
<input type="text" id="Fullname" name="Fullname" class="form-field"><br>
</div>
<div class="input">
<label for="expireddate">Expired Date</label><br>
<input type="date" id="expireddate" name="expireddate" class="form-field"><br>
</div>
<div class="input">
<label for="cvv">CCV</label><br>
<input type="text" id="cvv" name="cvv" placeholder="xxx" class="form-field"><br>
</div>
</div>
</form>
</div>
<div class="bttnfoot">
<a href="BuyTicketPage.html" class="cancelbttn">Cancel payment</a>
<a href="HistoryPurchase.html" class="nextbttn">Next</a>
</div>
</header>
</body>
</html>