blob: b83c13febb3f30b3bc624cc46ead18201f2d5a0c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
<html>
<head>
<style type="text/css">@import "/frame.css";</style>
<script src="/ajaxloader.min.js"></script>
<meta http-equiv="cache-control" content="max-age=0">
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="expires" content="0">
<meta http-equiv="expires" content="Tue, 01 Jan 1980 1:00:00 GMT">
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="refresh" content="0; url=/fe_status.shtml">
<script language="javascript">
function redirect() {
window.location.replace("/fe_status.shtml");}
</script>
</head>
<body onload="redirect()">
<div id="header">
<h1>MythFrontend Status</h1>
</div>
<br> <br>
<h3>Querying MythFrontends...</h3>
<br>
<div id="container">
<div>
<canvas id="spinner"></canvas>
</div>
</div>
<script type="text/javascript">
var opts = {
size: 72, // Width and height of the spinner
factor: 0.25, // Factor of thickness, density, etc.
color: "#ebb81c", // Color #rgb or #rrggbb
speed: 1.0, // Number of turns per second
clockwise: true // Direction of rotation
};
var ajaxLoader = new AjaxLoader("spinner", opts);
ajaxLoader.show();
</script>
</body>
</html>
|