-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
94 lines (94 loc) · 4.61 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
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
<!DOCTYPE html>
<html>
<head>
<title>DeCun</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<h1>Generate A Crypto-Based Donation Form</h1>
<button class="menu_button">
<span onclick="window.location='./example.html'">Example Form</span>
</button>
<form>
<h2>Enter Your Name Or The Name of Your Organization</h2>
<input id="org-name" type="text" name="name" placeholder="Your Name">
<h2>Enter Your Website or Your Organization's Website</h2>
<input id="org-website" type="text" name="website" placeholder="Your Website">
<hr style="margin-top: 30px;">
<h2>Select The Coins You Want To Use</h2>
<div id="crypto-options">
<label><input type="checkbox" name="crypto" value="BTC">Bitcoin (BTC)</label>
<label><input type="checkbox" name="crypto" value="ETH">Ethereum (ETH)</label>
<label><input type="checkbox" name="crypto" value="DOGE">Dogecoin (DOGE)</label>
<label><input type="checkbox" name="crypto" value="XMR">Monero (XMR)</label>
<label><input type="checkbox" name="crypto" value="LTC">Litecoin (LTC)</label>
<label><input type="checkbox" name="crypto" value="BCH">Bitcoin Cash (BCH)</label>
<label><input type="checkbox" name="crypto" value="ADA">Cardano (ADA)</label>
<label><input type="checkbox" name="crypto" value="BNB">Binance Coin (BNB)</label>
<label><input type="checkbox" name="crypto" value="MATIC">Polygon (MATIC)</label>
<label><input type="checkbox" name="crypto" value="NEO">Neo (NEO)</label>
<label><input type="checkbox" name="crypto" value="SOL">Solona (SOL)</label>
<label><input type="checkbox" name="crypto" value="XRP">Ripple (XRP)</label>
</div>
<hr style="margin-top: 30px;">
<h2>Enter Your Wallet Addresses</h2>
<div id="crypto-fields-list">
<div class="crypto-field">
<label for="BTC">Bitcoin (BTC)</label>
<input type="text" name="BTC" placeholder="Enter your Bitcoin address">
</div>
<div class="crypto-field">
<label for="ETH">Ethereum (ETH)</label>
<input type="text" name="ETH" placeholder="Enter your Ethereum address">
</div>
<div class="crypto-field">
<label for="DOGE">Dogecoin (DOGE)</label>
<input type="text" name="DOGE" placeholder="Enter your Dogecoin address">
</div>
<div class="crypto-field">
<label for="XMR">Monero (XMR)</label>
<input type="text" name="XMR" placeholder="Enter your Monero address">
</div>
<div class="crypto-field">
<label for="LTC">Litecoin (LTC)</label>
<input type="text" name="LTC" placeholder="Enter your Litecoin address">
</div>
<div class="crypto-field">
<label for="BCH">Bitcoin Cash (BCH)</label>
<input type="text" name="BCH" placeholder="Enter your Bitcoin Cash address">
</div>
<div class="crypto-field">
<label for="ADA">Cardano (ADA)</label>
<input type="text" name="ADA" placeholder="Enter your Cardano address">
</div>
<div class="crypto-field">
<label for="BNB">Binance Coin (BNB)</label>
<input type="text" name="BNB" placeholder="Enter your Binance Coin address">
</div>
<div class="crypto-field">
<label for="MATIC">Polygon (MATIC)</label>
<input type="text" name="MATIC" placeholder="Enter your Polygon address">
</div>
<div class="crypto-field">
<label for="NEO">Neo (NEO)</label>
<input type="text" name="NEO" placeholder="Enter your Neo address">
</div>
<div class="crypto-field">
<label for="SOL">Solona (SOL)</label>
<input type="text" name="SOL" placeholder="Enter your Solona address">
</div>
<div class="crypto-field">
<label for="XRP">Ripple (XRP)</label>
<input type="text" name="XRP" placeholder="Enter your Ripple address">
</div>
</div>
<button id="generate-btn">Generate</button>
</form>
<div id="code-box">
<label for="code"><h2>Copy The Code Below And Embed It Into Your Website</h2></label>
<textarea id="code"></textarea>
<button id="copy-btn">Copy</button>
</div>
<script type="text/javascript" src="main.js"></script>
</body>
</html>