-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
44 lines (40 loc) · 1.53 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Crypto Donation Tracker</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
<h1>🌍 Decentralized Charity Donation Tracker</h1>
<!-- Form for donations -->
<div class="donation-form">
<h2>Make a Donation</h2>
<label for="cause">Select Cause:</label>
<select id="cause">
<option value="Save the Oceans">Save the Oceans</option>
<option value="Reforest the Earth">Reforest the Earth</option>
<option value="Support Education">Support Education</option>
</select>
<label for="donationAmount">Donation Amount (ETH):</label>
<input type="number" id="donationAmount" placeholder="Enter ETH amount" min="0.01" step="0.01" required>
<button onclick="makeDonation()">Donate Now</button>
</div>
<!-- Display recent donations -->
<div class="donations-list">
<h2>Recent Donations</h2>
<ul id="donationsList">
<!-- Donations will be dynamically added here -->
</ul>
</div>
<!-- Section to display total donations -->
<div class="total-donations">
<h2>Total Donations</h2>
<p><strong id="totalDonations">0</strong> ETH</p>
</div>
</div>
<script src="app.js"></script>
</body>
</html>