MiniDLNA update: 1.0.19.1 to 1.0.20
[tomato.git] / release / src / router / www / shutdown.asp
blob2cbd22cdc861741c18fc4796e75f0b8dac1ef32c
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(); %>] Shutting down...</title>
14 <script type='text/javascript'>
15 var n = 16;
16 function tick()
18 if (--n > 0) {
19 document.getElementById('sptime').innerHTML = n;
20 setTimeout(tick, 1000);
22 else {
23 document.getElementById('msg').innerHTML = 'You can now unplug the router.';
26 </script></head>
27 <body style='background:#fff' onload='tick()'><table style='width:100%;height:100%'>
28 <tr><td style='text-align:center;vertical-align:middle;font:12px sans-serif'>
29 <span id='msg'>Please wait while the router shuts down... <span id='sptime' style='font-size:80%;background:#eee'></span></span>
30 </td></tr>
31 </table></body></html>