reboot.htm 1.2 KB

12345678910111213141516171819202122232425262728293031
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<%=luci.i18n.context.lang%>" lang="<%=luci.i18n.context.lang%>">
  4. <head>
  5. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  6. <title><%=hostname%> - <% if title then %><%=title%><% else %><%:Rebooting...%><% end %></title>
  7. <link rel="stylesheet" type="text/css" media="screen" href="<%=media%>/cascade.css" />
  8. </head>
  9. <body>
  10. <div id="maincontainer">
  11. <div id="maincontent">
  12. <h2>Geschafft! Dein Freifunkknoten ist nun fertig eingerichtet.</h2>
  13. <% if pubkey then %>
  14. <fieldset class="cbi-section">
  15. <p>
  16. <%= luci.template.render_string(site.config_mode.msg_pubkey) %>
  17. </p>
  18. <div class="the-key">
  19. # <%= hostname %>
  20. <br/>
  21. <%= pubkey %>
  22. </div>
  23. </fieldset>
  24. <% end %>
  25. <fieldset class="cbi-section">
  26. <%= luci.template.render_string(site.config_mode.msg_reboot) %>
  27. </fieldset>
  28. </div>
  29. </div>
  30. </body>
  31. </html>