power_off.htm 875 B

12345678910111213141516171819202122232425
  1. <%#
  2. Copyright 2008 Steven Barth <steven@midlink.org>
  3. Copyright 2008-2009 Jo-Philipp Wich <jow@openwrt.org>
  4. Copyright 2017 Stan Grishin <stangri@melmac.net>
  5. Licensed to the public under the Apache License 2.0.
  6. -%>
  7. <%+header%>
  8. <h2 name="content"><%:Power Off Device%> - <%:Confirm%></h2>
  9. <p>
  10. <%_ WARNING: Power off might result in a reboot on a device which doesn't support power off.<br /><br />
  11. Click "Proceed" below to power off your device. %>
  12. </p>
  13. <div class="cbi-page-actions right">
  14. <form class="inline" action="<%=REQUEST_URI%>" method="post">
  15. <input type="hidden" name="token" value="<%=token%>" />
  16. <input type="hidden" name="step" value="2" />
  17. <input class="cbi-button cbi-button-reset" name="cancel" type="submit" value="<%:Cancel%>" />
  18. <input class="cbi-button cbi-button-apply" type="submit" value="<%:Proceed%>" />
  19. </form>
  20. </div>
  21. <%+footer%>