-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdonate.html
More file actions
63 lines (56 loc) · 1.74 KB
/
donate.html
File metadata and controls
63 lines (56 loc) · 1.74 KB
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
<!DOCTYPE html>
<html>
<head>
<title>Drawdrimer | buy a coffe for us!</title>
<style>
body {
font-family: Arial, sans-serif;
text-align: center;
}
.donation-form {
max-width: 400px;
margin: 0 auto;
}
.donation-form label {
display: block;
margin-bottom: 10px;
}
.donation-form input[type="text"], .donation-form select {
width: 100%;
padding: 5px;
margin-bottom: 10px;
}
.donation-form input[type="submit"] {
background-color: #4CAF50;
color: white;
border: none;
padding: 10px 20px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin-bottom: 10px;
cursor: pointer;
}
</style>
</head>
<body>
<h1>Buy a coffe for us</h1>
<div class="donation-form">
<form action="process_donation.php" method="post">
<label for="name">Name:</label>
<input type="text" id="name" name="name" required>
<label for="email">E-mail:</label>
<input type="text" id="email" name="email" required>
<label for="amount">Value:</label>
<select id="amount" name="amount" required>
<option value="10">$10</option>
<option value="20">$20</option>
<option value="50">$50</option>
<option value="100">$100</option>
</select>
<input type="submit" value="Donate">
</form>
</div>
</body>
</html>