mirror of
https://github.com/fleetdm/fleet
synced 2026-04-29 01:17:35 +00:00
For #26736 adds a self closing page that is the final part of connecting with Android Enterprise. This allows the user to see the fleet page notification that android mdm is now enabled.
18 lines
494 B
HTML
18 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>
|