Skip to content

Instantly share code, notes, and snippets.

@tpmccallum
Created May 18, 2021 05:54
Show Gist options
  • Save tpmccallum/4388f15f2e72e29deb453c696d9248e7 to your computer and use it in GitHub Desktop.
Save tpmccallum/4388f15f2e72e29deb453c696d9248e7 to your computer and use it in GitHub Desktop.
The HTML for simple_dapp_001
<!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