codecombat/app/assets/index_old_browser.html
Scott Erickson 1489df3f23 Show messages that IE9 and IE10 are deprecated, fix and clean existing systems
* Trim index_old_browser.html (shown on /play/) to simple page
* Fix useragent middleware to attach where needed
* Show IE alert on all pages on application init
2016-05-04 15:05:55 -07:00

33 lines
1.5 KiB
HTML

<!doctype html>
<head>
<title>CodeCombat - Learn how to code by playing a game</title>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous">
<!-- Optional theme -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap-theme.min.css" integrity="sha384-fLW2N01lMqjakBkx3l/M9EahuwpSfeNvV63J5ezn3uZzapT0u7EYsXMjQV+0En5r" crossorigin="anonymous">
<!-- Latest compiled and minified JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js" integrity="sha384-0mSbJDEHialfmuBBQP6A4Qrprq5OVfW37PRR3j5ELqxss1yVqOtnepnHVP9aJ7xS" crossorigin="anonymous"></script>
</head>
<body class="nano clearfix">
<div class="container">
<h1>CodeCombat requires a modern browser to play</h1>
<ul class="list-group">
<li class="list-group-item">Chrome 20+</li>
<li class="list-group-item">Firefox 21+</li>
<li class="list-group-item">Safari 6+</li>
<li class="list-group-item">Internet Explorer 11+ or Edge</li>
</ul>
<h2>It looks like you have an older browser or a mobile device, so it won't work. Sorry!</h2>
<hr />
<div class="text-center">
<h2><a href="/">Return Home</a></h2>
or
<h2><a href="?try-old-browser-anyway=true">Try Anyway</a></h2>
</div>
</div>
</body>
</html>