backup.htm 1006 B

12345678910111213141516171819202122232425262728293031323334
  1. <%#
  2. Copyright 2017 Jo-Philipp Wich <jo@mein.io>
  3. Licensed to the public under the Apache License 2.0.
  4. -%>
  5. <%+header%>
  6. <script type="text/javascript" src="<%=resource%>/cbi.js"></script>
  7. <h2 name="content"><%:Netlink Bandwidth Monitor - Backup / Restore %></h2>
  8. <fieldset class="cbi-section">
  9. <legend><%:Restore Database Backup%></legend>
  10. <p>
  11. <form method="POST" action="<%=url("admin/nlbw/restore")%>" enctype="multipart/form-data">
  12. <input type="hidden" name="token" value="<%=token%>" />
  13. <input type="file" name="archive" accept="application/gzip,.gz" />
  14. <input type="submit" value="<%:Restore%>" class="cbi-button cbi-button-apply" />
  15. </form>
  16. <% if message then %>
  17. <div class="alert-message"><%=message%></div>
  18. <% end %>
  19. </p>
  20. <legend><%:Download Database Backup%></legend>
  21. <p>
  22. <form method="GET" action="<%=url("admin/nlbw/download")%>">
  23. <input type="submit" value="<%:Generate Backup%>" class="cbi-button cbi-button-link" />
  24. </form>
  25. </p>
  26. </fieldset>
  27. <%+footer%>