aboutsummaryrefslogtreecommitdiffstats
path: root/templates/reboot.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/reboot.html')
-rw-r--r--templates/reboot.html22
1 files changed, 0 insertions, 22 deletions
diff --git a/templates/reboot.html b/templates/reboot.html
deleted file mode 100644
index b9f0c54..0000000
--- a/templates/reboot.html
+++ /dev/null
@@ -1,22 +0,0 @@
-{% extends "base.html" %}
-{% block body %}
-<h3>System Reboot</h3>
-
-{% if status == 'rebooting' %}
-
-Rebooting! This interface will stop working in a few seconds, check back in a
-minute or two...
-
-{% else %}
-<form action="/reboot/" method="POST">
-Are you sure you'd like to restart? This could have reprecussions!
-<br>
-<label class="checkbox">
- <input type="checkbox" name="confirm">Yes, i'm certain
-</label>
-<button type="submit" class="btn btn-large btn-primary btn-warning" type="button">
-Restart</button>
-</form>
-{% endif %}
-
-{% endblock %}