mirror of
https://github.com/Mo3he/Axis_Cam_Tailscale.git
synced 2026-07-29 11:33:26 +00:00
18 lines
480 B
HTML
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> |