-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
25 lines (24 loc) · 852 Bytes
/
index.html
File metadata and controls
25 lines (24 loc) · 852 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Crowdfunding DApp</title>
<script src="https://cdn.ethers.io/lib/ethers-5.2.min.js"></script> <!-- Include Ethers.js -->
</head>
<body>
<h1>Crowdfunding DApp</h1>
<button id="connectButton">Connect MetaMask</button>
<!-- Campaign creation form -->
<form id="campaignForm">
<label for="name">Campaign Name: </label>
<input type="text" id="name" placeholder="Enter campaign name" required />
<br>
<label for="goal">Campaign Goal (ETH): </label>
<input type="number" id="goal" placeholder="Enter goal in ETH" required />
<br>
<button type="submit">Start Campaign</button>
</form>
<script src="app.js"></script> <!-- Include your JavaScript file -->
</body>
</html>