diff options
Diffstat (limited to 'templates/mle.html')
| -rw-r--r-- | templates/mle.html | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/templates/mle.html b/templates/mle.html new file mode 100644 index 0000000..b7bc632 --- /dev/null +++ b/templates/mle.html @@ -0,0 +1,44 @@ +<!-- metrics.html, + -- Copyright (C) 2025 Private Island Networks Inc. +--> +{% extends "base.html" %} +{% block content %} + + <div id="mc-mode-box"> + <p> + Viewing Mode: <span id="mc-mode">{{mode}}</span> + </p> + <input type="radio" id="mc-mode-live" class="mc-mode" name="mode" + value="live" checked /> <label for="live">Live</label> <input + type="radio" id="mc-mode-file" class="mc-mode" name="mode" + value="file" /> <label for="file">File</label> <input type="file" + id="mc-filename" name="filename" accept=".pcapng"> + <button id="mc-start" class="mc-action" + style="background-color: green" data-action="start">Start</button> + <button id="mc-stop" class="mc-action" style="background-color: red" + data-action="stop">Stop</button> + <button id="mc-help" class="mc-action" style="background-color: blue" + data-action="help">Help</button> + <button id="mc-clear" class="mc-action" + style="background-color: yellow; color: black;" data-action="clr">Clear</button> + </div> + + <br> + + <div id="mc-log-hdr"> + <div class="mc-log-col mc-log-col-time" + style="border: 0px solid green;">Time</div> + <div class="mc-log-col mc-log-col-pc" + style="border: 0px solid green;">PHY0</div> + <div class="mc-log-col mc-log-col-phy0" + style="border: 0px solid green;">PHY1</div> + <div class="mc-log-col mc-log-col-phy1" + style="border: 0px solid green;">PHY2</div> + </div> + + <div id="mc-log"> + <!-- Log Entries are Inserted Here --> + </div> + + +{% endblock %}
\ No newline at end of file |



