blob: 00a2b02b920fcc094d391ddac833f0ef03cdf3fc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
{#
# Copyright (c) 2016 Weitian LI <liweitianux@live.com>
# MIT license
#
# Console part
#}
<section id="console">
<h2><span class="fa fa-gamepad" aria-hidden="true"></span> Console</h2>
<hr />
<p class="status"><strong>
<span class="fa fa-dashboard" aria-hidden="true"></span>
Simulation status:
<span id="fg21sim-status" class="label label-default">N/A</span>
</strong></p>
<p class="button-group">
<button type="button" id="start-fg21sim"><span class="fa fa-play" aria-hidden="true"></span> Start</button>
<button type="button" class="button button-warning" id="stop-fg21sim" disabled="disabled"><span class="fa fa-stop" aria-hidden="true"></span> Stop</button>
</p>
<div id="log-messages" class="panel panel-default">
<div class="panel-heading">
<span class="panel-title"><span class="fa fa-comments" aria-hidden="true"></span> Logging Messages</span>
</div>
<div class="panel-body">
<p>messages ...</p>
</div>
</div>
</section>
|