2 Copyright 2008 Steven Barth <steven@midlink.org>
3 Copyright 2008-2015 Jo-Philipp Wich <jow@openwrt.org>
4 Licensed to the public under the Apache License 2.0.
9 <h2 name="content"><%:Reboot%></h2>
11 <p><%:Reboots the operating system of your device%></p>
13 <%- local c = require("luci.model.uci").cursor():changes(); if c and next(c) then -%>
14 <p class="alert-message warning"><%:Warning: There are unsaved changes that will get lost on reboot!%></p>
19 <script type="text/javascript">//<![CDATA[
23 window.location = '<%=controller%>/admin';
28 window.setTimeout(ping, 5000);
30 alert('<%:Device unreachable%>');
34 var img = document.createElement('img');
38 img.src = '<%=resource%>/icons/loading.gif?' + Math.random();
40 document.getElementById('reboot-message').innerHTML = '<%:Waiting for device...%>';
43 function reboot(button) {
44 button.style.display = 'none';
45 document.getElementById('reboot-message').parentNode.style.display = '';
47 (new XHR()).post('<%=controller%>/admin/system/reboot/call', { token: '<%=token%>' }, check);
51 <input class="cbi-button cbi-button-action important" type="button" value="<%:Perform reboot%>" onclick="reboot(this)" />
53 <p class="alert-message" style="display:none">
54 <img src="<%=resource%>/icons/loading.gif" alt="<%:Loading%>" style="vertical-align:middle" />
55 <span id="reboot-message"><%:Device is rebooting...%></span>