add index

This commit is contained in:
poma 2019-07-15 19:16:29 +03:00
parent 8bad79fd5f
commit f1ea7da769
2 changed files with 16 additions and 0 deletions

1
.gitignore vendored
View File

@ -1,5 +1,6 @@
build
.vscode
/index.js
# Created by .ignore support plugin (hsz.mobi)
### Node template

15
index.html Normal file
View File

@ -0,0 +1,15 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Snark mixer test</title>
</head>
<body>
<p>
Open dev console!<br>
<a href="#" onclick="deposit()">Deposit</a>
<a href="#" onclick="withdraw()">Withdraw</a>
</p>
<script src="index.js"></script>
</body>
</html>