mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
parent
7207756978
commit
976dd7873f
11
assets/webconfig/content/ie_not_supported.html
Normal file
11
assets/webconfig/content/ie_not_supported.html
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<title>Hyperion WebUI - IE not supported</title>
|
||||||
|
<meta content="">
|
||||||
|
<style> body {margin:auto; padding:2%; text-align:center; font-family:arial;}</style>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<img src="../img/hyperion/hyperionlogo.png" alt="Redefine ambient light!" style="margin-bottom:20px;">
|
||||||
|
<h2><span style="color:red">We are sorry, Internet Explorer is not supported!</span><br /><br /> Please use recent versions of Firefox, Chrome, Safari or MS Edge.</h2>
|
||||||
|
</body>
|
||||||
|
</html>
|
@ -2,6 +2,13 @@
|
|||||||
<html>
|
<html>
|
||||||
|
|
||||||
<head>
|
<head>
|
||||||
|
<script>
|
||||||
|
if (/MSIE/.test(navigator.userAgent) || /Trident/.test(navigator.userAgent))
|
||||||
|
{
|
||||||
|
window.location.pathname = '/content/ie_not_supported.html';
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
<meta content='width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0' name='viewport' />
|
<meta content='width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0' name='viewport' />
|
||||||
|
Loading…
Reference in New Issue
Block a user