-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdonateOnline.html
107 lines (104 loc) · 3.49 KB
/
donateOnline.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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Char-E-T - Donate</title>
<link rel="shortcut icon" href="./Media/favicon.ico" type="image/svg+xml" />
<!-- Font Awesome Icons -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" />
<!-- CSS links -->
<link rel="stylesheet" href="CSS/style.css" />
<link rel="stylesheet" href="CSS/donateOnline.css" />
</head>
<body>
<our-header style="width: 100%"></our-header>
<main>
<div class="donation-container">
<h1>Donate Online</h1>
<p>Support our causes and make a difference today.</p>
<form action="/submit-donation" method="POST">
<div class="form-group">
<label for="name">Full Name</label>
<input
type="text"
id="name"
name="name"
placeholder="Enter your full name"
required />
</div>
<div class="form-group">
<label for="email">Email Address</label>
<input
type="email"
id="email"
name="email"
placeholder="Enter your email address"
required />
</div>
<div class="form-group">
<label for="phone">Phone Number</label>
<input
type="tel"
id="phone"
name="phone"
placeholder="Enter your phone number"
required />
</div>
<div class="form-group">
<label>Donation Type</label>
<div class="radio-group">
<label>
<input
type="radio"
name="donation_type"
value="domestic"
checked />
Domestic
</label>
<label>
<input
type="radio"
name="donation_type"
value="international" />
International
</label>
</div>
</div>
<div class="form-group">
<label for="cause">Cause</label>
<select id="cause" name="cause" required>
<option value="" disabled selected>Select a cause</option>
<option value="education">Education Support</option>
<option value="healthcare">Healthcare Services</option>
<option value="food">Feeding the Hungry</option>
<option value="emergency">Emergency Relief</option>
</select>
</div>
<div class="form-group">
<label for="amount">Donation Amount (EGP)</label>
<input
type="number"
id="amount"
name="amount"
placeholder="Enter your donation amount"
required />
</div>
<div class="form-group">
<label for="message">Additional Message (Optional)</label>
<textarea
id="message"
name="message"
rows="3"
placeholder="Write a message if you like"></textarea>
</div>
<button type="submit" class="btn-submit">Donate Now</button>
</form>
</div>
</main>
<our-footer style="width: 100%"></our-footer>
<script src="./JS/main.js"></script>
</body>
</html>