Busybox: Upgrade to 1.21.1 (stable). lsof active.
[tomato.git] / release / src / router / www / saved-moved.asp
bloba2b81bb44047d76ea85f077cf4a3e48a6a2fd3ae
1 <!--
2 Tomato GUI
3 Copyright (C) 2006-2010 Jonathan Zarate
4 http://www.polarcloud.com/tomato/
6 For use with Tomato Firmware only.
7 No part of this file may be used without permission.
8 -->
9 <html>
10 <head>
11 <meta http-equiv='content-type' content='text/html;charset=utf-8'>
12 <meta name='robots' content='noindex,nofollow'>
13 <title>[<% ident(); %>] Restarting...</title>
14 <script language='javascript'>
15 var n = 20;
16 function tick()
18 var e = document.getElementById('continue');
19 e.value = n;
20 if (n == 10) {
21 e.disabled = false;
23 if (n == 0) {
24 e.value = 'Continue';
26 else {
27 --n;
28 setTimeout(tick, 1000);
31 function go()
33 window.location = window.location.protocol + '//<% nv("lan_ipaddr"); %>/';
35 </script></head>
36 <body style='background:#fff' onload='tick()'>
37 <table style='width:100%;height:100%'>
38 <tr><td style='text-align:center;vertical-align:middle;font:12px sans-serif'>
39 <form>
40 <div style='width:600px;border-bottom:1px solid #aaa;margin:5px auto;padding:5px 0;font-size:14px'>
41 The router's new IP address is <% nv("lan_ipaddr"); %>. You may need to release then renew your computer's DHCP lease before continuing.
42 </div>
43 Please wait while the router restarts... &nbsp;
44 <input type='button' value='' style='font:12px sans-serif;width:80px;height:24px' id='continue' onclick='go()' disabled>
45 </form>
46 </td></tr></table></body></html>