Skip to content

Instantly share code, notes, and snippets.

@karthickpdy
Created September 1, 2017 10:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save karthickpdy/0a564f63dfad47f9a673a567d66e7e98 to your computer and use it in GitHub Desktop.
Save karthickpdy/0a564f63dfad47f9a673a567d66e7e98 to your computer and use it in GitHub Desktop.
UI
<!DOCTYPE html>
<html>
<head>
<title>Stock Exchange - Truffle Webpack Demo w/ Frontend</title>
<link href='https://fonts.googleapis.com/css?family=Open+Sans:400,700' rel='stylesheet' type='text/css'>
<script src="./app.js"></script>
</head>
<body>
<h1>Stock Exchange</h1>
<h3>Company Stock Balance - <span class="black"><span id="holdingBalance"></h3>
<h3>Account Stock Balance - <span class="black"><span id="balance"></h3>
<h3>Account Ether Balance - <span class="black"><span id="etherBalance"></h3>
<button id="buy" onclick="App.buy()">Buy</button>
<button id="sell" onclick="App.sell()">Sell</button>
<br><br>
<h3>Latest Transaction</h3><span id="status"></span>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment