aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2022-04-11 13:25:06 +0200
committerEgor Tensin <Egor.Tensin@gmail.com>2022-04-11 13:25:06 +0200
commit1b4f109dc602a2215500367115d1b4dfad35f0b5 (patch)
tree426ea777109073a9d269188601dd9e2e3f5081fd
parentindex.html: commands closer to buttons (diff)
downloadlinux-status-1b4f109dc602a2215500367115d1b4dfad35f0b5.tar.gz
linux-status-1b4f109dc602a2215500367115d1b4dfad35f0b5.zip
index.html: get rid of stupid # <a>nchors
-rw-r--r--html/index.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/html/index.html b/html/index.html
index 00ca4b5..3ba167a 100644
--- a/html/index.html
+++ b/html/index.html
@@ -16,8 +16,8 @@
<p class="mb-0 small">refreshed every <span id="status_refresh_interval">-</span> seconds</p>
</div>
<div class="btn-group" role="group" id="power_buttons">
- <a role="button" class="btn btn-sm btn-warning" href="#" onclick="reboot();">Reboot</a>
- <a role="button" class="btn btn-sm btn-danger" href="#" onclick="shutdown();">Shutdown</a>
+ <button type="button" class="btn btn-sm btn-warning" onclick="reboot();">Reboot</button>
+ <button type="button" class="btn btn-sm btn-danger" onclick="shutdown();">Shutdown</button>
</div>
</div>
</div>