39 lines
1.1 KiB
HTML
39 lines
1.1 KiB
HTML
<!DOCTYPE html>
|
|
<html style="height: 100%">
|
|
<head>
|
|
<title>Unsupported browser</title>
|
|
<style>
|
|
body {
|
|
font-family: Arial, Helvetica, sans-serif;
|
|
}
|
|
</style>
|
|
<!--[if IE]>
|
|
<style>
|
|
.hide-for-ie {
|
|
display: none;
|
|
}
|
|
</style>
|
|
<![endif]-->
|
|
</head>
|
|
<body style="height: 100%; margin: 0;">
|
|
<table style="width: 100%; height: 100%; border-collapse: collapse;">
|
|
<tr>
|
|
<td style="vertical-align: middle; text-align: center;">
|
|
<div style="display: inline-block;">
|
|
<img src="./unsupported.png">
|
|
<h3>Your browser is not supported</h3>
|
|
<p>Please, update it or use our <a href="http://telegram.org/dl" target="_blank">native clients</a>.</p>
|
|
<a class="hide-for-ie" onclick="forceLoad()" href="#">I'm Feeling Lucky</a>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
<script>
|
|
function forceLoad() {
|
|
window.localStorage.setItem('tt-ignore-compat', true);
|
|
window.top.location.reload();
|
|
}
|
|
</script>
|
|
</body>
|
|
</html>
|