mirror of
https://github.com/dimoniche/solarium.vlad.git
synced 2026-01-30 21:13:31 +03:00
32 lines
1.1 KiB
HTML
32 lines
1.1 KiB
HTML
<!DOCTYPE html>
|
|
<!--
|
|
Copyright (c) 2019, CashService.
|
|
-->
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Солярий {$version}</title>
|
|
<link rel="icon" href="favicon.ico" type="image/x-icon">
|
|
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
|
|
<script type="text/javascript">
|
|
|
|
function timedRedirect(){
|
|
document.getElementById('delayMsg').innerHTML = 'Контроллер перезагрузится через <span id="countDown">10</span> секунд...';
|
|
var count = 10;
|
|
setInterval(function(){
|
|
count--;
|
|
document.getElementById('countDown').innerHTML = count;
|
|
if (count == 0) {
|
|
window.location = 'http://{$ip_addr}';
|
|
}
|
|
},1000);
|
|
}
|
|
window.onload = timedRedirect;
|
|
</script>
|
|
</head>
|
|
<body id="main" style="display:table;margin:auto;background-color:#003D8D" link="#C0C0C0" vlink="#808080" alink="#FF0000">
|
|
<p><img alt="" src="logo.png"/></p>
|
|
<div id="delayMsg"></div>
|
|
</body>
|
|
</html>
|