fleet/server/mdm/android/service/enterpriseCallback.html
Gabriel Hernandez c5f0f60723
add self closing successful Android enterprise connection page (#26767)
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.
2025-03-04 16:32:44 +00:00

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>