mirror of
https://github.com/fleetdm/fleet
synced 2026-05-23 00:49:03 +00:00
19 lines
494 B
HTML
19 lines
494 B
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<html>
|
||
|
|
<head>
|
||
|
|
<meta charset="UTF-8" />
|
||
|
|
<meta name="robots" content="noindex, nofollow" />
|
||
|
|
<meta name="googlebot" content="noindex, nofollow" />
|
||
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||
|
|
<title>Auto Close</title>
|
||
|
|
<script>
|
||
|
|
window.onload = function () {
|
||
|
|
window.close();
|
||
|
|
};
|
||
|
|
</script>
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
<p>If this page does not close automatically, please close it manually.</p>
|
||
|
|
</body>
|
||
|
|
</html>
|