-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
33 lines (33 loc) · 1005 Bytes
/
index.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
<!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 Form</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/water.css@2/out/water.css">
</head>
<body>
<form>
<label for="cnumber">Card number</label>
<br/>
<input type="text" id="cnumber" name="cnumber" placeholder="Valid card number">
<br/>
<fieldset>
<legend>Expiration Date</legend>
<label>
Month: <input type="number" id="month" name="month" placeholder="MM">
</label>
<label>
Year: <input type="number" id="year" name="year" placeholder="YYYY">
</label>
</fieldset>
<label for="cvv">CVV</label>
<br/>
<input type="text" id="cvv" name="cvv" placeholder="Card verification value">
<br/>
<input type="submit" id="submit">
</form>
<script src="script.js"></script>
</body>
</html>