-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathua_not_supported.html
executable file
·57 lines (52 loc) · 2.33 KB
/
ua_not_supported.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<title>Browser Not Supported</title>
<meta name="apple-mobile-web-app-capable" content="yes"/>
<meta name="HandheldFriendly" content="True">
<meta name="MobileOptimized" content="320">
<meta name="format-detection" content="telephone=no"/>
<meta http-equiv="cleartype" content="on">
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css">
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap-theme.min.css">
</head>
<body>
<div class="container main-content main-content-slim">
<div class="legacy">
<h4>Unsupported Browser</h4>
<div class="alert alert-error">
Your browser is outdated, to improve your experience in the web please update your browser,
we suggest these great options:
</div>
<div class="row">
<div class="col-sm-4 col-md-4">
<div class="thumbnail text-center">
<a href="http://www.mozilla.org/firefox/new/" target="_blank">
<img src="img/mozilla-firefox-icon.png" alt="" class="browser-icon">
<div class="caption">Mozilla Firefox</div>
</a>
</div>
</div>
<div class="col-sm-4 col-md-4">
<div class="thumbnail text-center">
<a href="https://www.google.com/chrome/" target="_blank">
<img src="img/google-chrome-icon.png" alt="" class="browser-icon">
<div class="caption">Google Chrome</div>
</a>
</div>
</div>
<div class="col-sm-4 col-md-4">
<div class="thumbnail text-center">
<a href="http://www.apple.com/safari/" target="_blank">
<img src="img/safari-icon.png" alt="" class="browser-icon">
<div class="caption">Apple Safari</div>
</a>
</div>
</div>
</div>
</div>
</div>
</body>
</html>