forked from salonishah01/AbolVani
-
Notifications
You must be signed in to change notification settings - Fork 0
/
donate.html
54 lines (44 loc) · 2.26 KB
/
donate.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
<head>
<link href='https://fonts.googleapis.com/css?family=Montserrat:400,700' rel='stylesheet' type='text/css'>
<link href='CSS/donate.css' rel='stylesheet' type='text/css'>
</head>
<body>
<div class="donation-container">
<div class="donation-box">
<div class="title">Donation Information</div>
<div class="fields">
<input type="text" id="firstName" placeholder="First Name"> </input>
<input type="text" id="lastName" placeholder="Last Name"> </input>
<input type="text" id="email" placeholder="Email"> </input>
</div>
<div class="amount">
<div class="button">INR 300</div>
<div class="button">INR 500</div>
<div class="button">INR 1000</div>
<div class="button">INR<input type="text" class="set-amount" placeholder=""> </input></div>
</div>
<div class="switch">
<input type="radio" class="switch-input" name="view" value="One-Time" id="one-time" checked="">
<label for="one-time" class="switch-label switch-label-off">One-Time</label>
<input type="radio" class="switch-input" name="view" value="Monthly" id="monthly">
<label for="monthly" class="switch-label switch-label-on">Monthly</label>
<span class="switch-selection"></span>
</div>
<div class="checkboxes">
<input type="checkbox" id="receipt" class="checkbox" />
<label for="receipt">Email Me A Receipt</label>
<br />
<input type="checkbox" id="anon" class="checkbox" />
<label for="anon">Give Anonymously</label>
<br />
<input type="checkbox" id="list" class="checkbox" />
<label for="list">Add Me To Email List</label>
</div>
<div class="confirm">
</div>
<div class="donate-button"><i class="fa fa-credit-card"></i> Donate Now</div>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script src="https://raw.githubusercontent.com/jerryluk/jquery.autogrow/master/jquery.autogrow-min.js"></script>
</body>