mirror of https://github.com/embarklabs/embark.git
25 lines
501 B
HTML
25 lines
501 B
HTML
<html>
|
|
<head>
|
|
<title>Embark - SimpleStorage Demo</title>
|
|
<link rel="stylesheet" href="css/app.min.css">
|
|
<script src="js/app.min.js"></script>
|
|
</head>
|
|
<body>
|
|
<h3>Embark - SimpleStorage Demo</h3>
|
|
|
|
<div>
|
|
<input type="text" class="text" value="10">
|
|
<button class="set">Set Value</button>
|
|
</div>
|
|
|
|
<div>
|
|
<button class="get">Get Value</button>
|
|
<br>value is <span class="value"></span>
|
|
</div>
|
|
|
|
<div class="logs">
|
|
</div>
|
|
|
|
</body>
|
|
</html>
|