-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpayment-form.html
93 lines (81 loc) · 3.85 KB
/
payment-form.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Future Leaders</title>
<link rel="stylesheet" href="css/normalise.css">
<link rel="stylesheet" href="css/header.css">
<link rel="stylesheet" href="css/footer.css">
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/payment-form.css">
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
</head>
<body>
<header class="header">
<a href="index.html" class="logo">
<img class="logo__image" src="images/logo.jpg" alt="Future Leaders Logo">
<span class="logo__text">Future</span>
<span class="logo__text logo__text--green">Leaders</span>
</a>
<a class="back" href="donate.html">
<img src="images/back-arrow.jpg" class="back__image" alt="Back Arrow">
</a>
</header>
<section class="payment-form">
<h1 class="form-title">Your contribution</h1>
<form>
<div class="form-field form-field--block">
<label class="form-field__label form-field__label--block" for="email">Email</label>
<input class="form-field__input" id="email" type="text"/>
<p class="warning">You must enter a valid email address</p>
</div>
<div class="form-field form-field--inline-block">
<label class="form-field__label form-field__label--block" for="amount">Amount</label>
<input class="form-field__input" id="amount" type="number"/>
</div>
<div class="form-field form-field--inline-block form-field--inline-block--right">
<label class="form-field__label form-field__label--block" for="payment-method">Payment Method</label>
<select id="payment-method">
<option>Visa</option>
<option>MasterCard</option>
<option>American Express</option>
<option>Visa Debit</option>
<option>Maestro</option>
<option>Visa Electron</option>
</select>
</div>
<div class="form-field form-field--block">
<label class="form-field__label form-field__label--block" for="card-number">Card Number</label>
<input class="form-field__input" id="card-number" type="text"/>
</div>
<div class="form-field form-field--block">
<label class="form-field__label form-field__label--block" for="cardholder-name">Cardholder Name</label>
<input class="form-field__input" id="cardholder-name" type="text"/>
</div>
<div class="form-field form-field--inline-block">
<label class="form-field__label form-field__label--block" for="expiration-date">Expiration Date</label>
<input class="form-field__input" id="expiration-date" type="text"/>
</div>
<div class="form-field form-field--inline-block form-field--inline-block--right">
<label class="form-field__label form-field__label--block" for="CVV">CVV</label>
<input class="form-field__input" id="CVV" type="text"/>
</div>
<div class="form-field form-field--block">
<input id="terms and conditions" type="checkbox"/>
<label class="form-field__label form-field__label--inline" for="terms and conditions">I agree to the <a href="#">terms and conditions</a></label>
</div>
<div class="form-field form-field--block">
<input id="email updates" type="checkbox"/>
<label class="form-field__label form-field__label--inline" for="email updates">Send me updates about Future Leaders</label>
</div>
</form>
</section>
<section class="button-container">
<a class="button-container__link">
<button class="button-container__button--green">DONATE</button>
</a>
</section>
<script src="./js/payment-form.js"></script>
</body>
</html>