-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
37 lines (36 loc) · 1.21 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
<html>
<head>
<link rel="stylesheet" type="text/css" href="index.css">
</head>
<body>
<center>
<div id="qrcode"></div>
</center>
<div id="mainBox">
<div id="address">
Address: <span id="myAddress"></span>
</div>
<div id="balance">
Balance: <span id="myBalance"></span>
</div>
<div id="middleMain">
<input type="text" placeholder="Recipient's Address" id="recieve">
<br>
<input type="text" placeholder="# of Ark" id="amount">
<br>
<select class="sendRec" id="charity">
<option value="choose">Choose a Charity to Support: </option>
<option value="DJ4uHVUCa5f83Y4Y3BFqUyRL47k2cWXkgE">American Red Cross</option>
<option value="DL3Nwk384ncUt39uXzBZtwcvENnF8ecmMw">Purple Heart</option>
<option value="DHSjfthDB1LjMiofUqnKXjFU3vi3rEQ8va">Wounded Warriors</option>
</select>
<button onclick="sendTransaction()" id="sendButton">Send Ark!</button>
<button id="signOut" onclick="signOut()">Sign Out</button>
</div>
<script src="main.js"></script>
<script src="bundle.js"></script>
<script src="qrcode.min.js"></script>
<script src="https://www.gstatic.com/firebasejs/4.12.0/firebase.js"></script>
<script src="index.js"></script>
</body>
</html>