-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpayment.html
26 lines (23 loc) · 863 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</title>
<link rel="stylesheet" href="loginSignup.css">
</head>
<body>
<div class="container">
<form id="form">
<h1>Payment</h1>
<input type="name" id="name" placeholder="Enter name" class="box">
<input type="number" name="" id="card" placeholder="enter your card number" class="box">
<input type="number" id="cvv" placeholder="enter your cvv" class="box">
<input type="date" id="expiry" value="09/23" class="box">
<input type="submit" value="submit" name="" id="" class="submit">
</form>
</div>
</body>
</html>
<script src="pay.js"></script>