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.
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>
|