Files
zoneminder/web/zm_html_view_restarting.php
stan b80c83e494 Split out views into separate files.
git-svn-id: http://svn.zoneminder.com/svn/zm/trunk@627 e3e1d417-86f3-4887-817a-d78f3d33393f
2003-07-11 09:27:56 +00:00

21 lines
708 B
PHP

<html>
<head>
<title>ZM - Restarting</title>
<link rel="stylesheet" href="zm_styles.css" type="text/css">
<script language="JavaScript">
function closeWindow()
{
window.close();
}
window.setTimeout( "window.close();", <?= 10000 ?> );
</script>
</head>
<body>
<table border="0" cellspacing="0" cellpadding="4" width="96%">
<tr><td align="right" class="text"><a href="javascript: closeWindow();">Close</a></td></tr>
<tr><td align="center" class="smallhead">ZoneMinder - Restarting</td></tr>
<tr><td align="center" class="text">Changes you have made to the configuration mean that ZoneMinder needs to restart. Please wait for a few seconds before applying any other changes.</td></tr>
</table>
</body>
</html>