58 lines
1.8 KiB
HTML
58 lines
1.8 KiB
HTML
<html>
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<link
|
|
rel="stylesheet"
|
|
href="https://cdn.jsdelivr.net/npm/purecss@3.0.0/build/pure-min.css"
|
|
integrity="sha384-X38yfunGUhNzHpBaEBsWLO+A0HDYOQi8ufWDkZ0k9e0eXz/tH3II7uKZ9msv++Ls"
|
|
crossorigin="anonymous"
|
|
/>
|
|
</head>
|
|
<body>
|
|
<script src="scripts/test.js"></script>
|
|
<div class="pure-g">
|
|
<div class="pure-u-1-2">
|
|
<h1>Heartbeat</h1>
|
|
<button
|
|
class="pure-button pure-button-primary"
|
|
onclick="getHeartBeatInfo()"
|
|
>
|
|
Info
|
|
</button>
|
|
<h1>Sync Price Slot (THA)</h1>
|
|
<button
|
|
class="pure-button pure-button-primary"
|
|
onclick="getSyncPriceInfo()"
|
|
>
|
|
Info
|
|
</button>
|
|
|
|
<button
|
|
class="pure-button pure-button-primary"
|
|
onclick="setSyncPriceRunTest()"
|
|
>
|
|
Test
|
|
</button>
|
|
|
|
<button
|
|
class="pure-button pure-button-primary"
|
|
onclick="setSyncPriceRunNow()"
|
|
>
|
|
Run Now
|
|
</button>
|
|
</div>
|
|
<div class="pure-u-1-2" style="background-color: aliceblue">
|
|
<!-- show output -->
|
|
<h1>Output</h1>
|
|
<textarea
|
|
id="output"
|
|
cols="100"
|
|
rows="45"
|
|
readonly
|
|
style="resize: none"
|
|
></textarea>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|