Created
May 18, 2021 05:54
-
-
Save tpmccallum/4388f15f2e72e29deb453c696d9248e7 to your computer and use it in GitHub Desktop.
The HTML for simple_dapp_001
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Simple DApp</title> | |
</head> | |
<body> | |
<!-- Account balance --> | |
<div id="account_balance" class="form-row text-center"> | |
<div class="col-sm-12 spacer"> | |
<b>Check account balance</b> | |
<br />Please, paste account address below. | |
<br /> | |
<input id="account_address_input" type="text" class="full_width spacer center_text" value="0x1BbE5edc5Caabf4517e40b766D64c3DEd86822Df" /> 👇 | |
<br /> | |
<button type="button" class="btn btn-primary btn-sm spacer" id="account_address_button" onclick="getBalance();">Check account balance</button> | |
<br /> | |
<div id="account_address_output_wei" class="full_width center_text"></div> | |
<hr class="mt-2 mb-3" /> | |
</div> | |
</div> | |
<br /> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment