peach-workspace/peach-web/templates/power.html.tera

19 lines
772 B
Plaintext
Raw Normal View History

2021-08-06 17:58:40 +00:00
{%- extends "nav" -%}
{%- block card %}
<!-- SHUTDOWN / REBOOT MENU -->
<div class="card center">
<div class="card-container">
<!-- BUTTONS -->
<div id="buttonDiv">
2021-11-15 15:31:15 +00:00
<a id="rebootBtn" class="button button-primary center" href="/power/reboot" title="Reboot Device">Reboot</a>
<a id="shutdownBtn" class="button button-warning center" href="/power/shutdown" title="Shutdown Device">Shutdown</a>
2021-08-06 17:58:40 +00:00
</div>
<!-- FLASH MESSAGE -->
{% include "snippets/flash_message" %}
<!-- NO SCRIPT FOR WHEN JS IS DISABLED -->
{% include "snippets/noscript" %}
2021-08-06 17:58:40 +00:00
</div>
</div>
2021-11-15 15:31:15 +00:00
<script type="text/javascript" src="/js/power_menu.js"></script>
2021-08-06 17:58:40 +00:00
{%- endblock card -%}