Files
Axis_Cam_Tailscale/arm/app/html/index.html
T
Weston Blieden 12a2aa4a12 Updated License
added tailscale required license
2022-09-08 08:15:54 +02:00

18 lines
480 B
HTML

<!DOCTYPE html>
<html>
<body>
<head>
<script>
function refreshIFrame() {
var x = document.getElementById("*Your_iframe_id*");
x.contentWindow.location.reload();
var t = setTimeout(refreshIFrame, 5000);
}
</script>
</head>
<body onload="refreshIFrame()">...
<iframe id="*Your_iframe_id*" src= "/axis-cgi/admin/systemlog.cgi?appname=Tailscale_VPN" style="height:1024px;width:768px;"></iframe>
</body>
</body>
</html>