-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathredirect.html
More file actions
51 lines (41 loc) · 1.7 KB
/
redirect.html
File metadata and controls
51 lines (41 loc) · 1.7 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Complex Function Plot: Redirecting...</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<script>
if (!(/Android|Mobile|webOS|iPhone|iPad|iPod|BlackBerry|BB|PlayBook|IEMobile|Windows Phone|Kindle|Silk|Opera Mini/i.test(navigator.userAgent))) {
window.location.href = "plotter.html";
}
</script>
<!-- Bootstrap -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="style.css">
<style type="text/css">
body {
min-width: 210px;
background-color: var(--lightblue);
color: white;
}
</style>
</head>
<body>
<div class="container">
<div class="row">
<div class="col-sm-3"></div>
<div class="col-sm-6">
<h1 class="text-center" style="margin-top:40%; font-size: 180px;">
<span class="glyphicon glyphicon-phone"></span>
</h1>
<h3 class="text-center" style="padding-bottom: 20px;">Sorry, but this page doesn't work on your device!</h3>
<h4 class="text-center">You can try on a different device, and you can also head back to the homepage to chcek out some examples.</h4>
<button type="button" class="center-block btn btn-lg btn-block btn-primary" style="margin-top: 60px;" onclick="window.location='index.html'">Back To Home</a>
</div>
<div class="col-sm-3"></div>
</div>
</div>
</body>
</html>