blob: 795ee51cf548e40c4b5bf3b840a25e7b0f82a1e5 [file] [log] [blame]
<!--
* Copyright (c) 2021 Boeing
*
* This program and the accompanying materials are made
* available under the terms of the Eclipse Public License 2.0
* which is available at https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Boeing - initial API and implementation
-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>OSEE</title>
<base href="/" />
<meta
name="viewport"
content="width=device-width, initial-scale=1" />
<link
rel="icon"
type="image/x-icon"
href="favicon.ico" />
<script>
const ua = window.navigator.userAgent;
const msie = ua.indexOf('MSIE ');
const trident = ua.indexOf('Trident/');
if (msie > 0 || trident > 0) {
alert(
'This browser is not supported by OSEE. Please use the latest supported Edge, Firefox or Chrome.'
);
}
</script>
</head>
<body class="mat-typography">
<osee-root></osee-root>
</body>
</html>