-
Notifications
You must be signed in to change notification settings - Fork 0
/
error.html
62 lines (52 loc) · 1.76 KB
/
error.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
58
59
60
61
62
<!DOCTYPE HTML SYSTEM>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, user-scalable=no"/>
<link rel="dns-prefetch" href="//fonts.googleapis.com">
<link rel="dns-prefetch" href="//google-analytics.com">
<link rel="dns-prefetch" href="//www.google-analytics.com">
<link rel="dns-prefetch" href="//ssl.google-analytics.com">
<meta name="robots" content="noindex,nofollow">
<link href="https://fonts.googleapis.com/css?family=PT+Sans:400,700" rel="stylesheet">
<!--JS-->
<script type="text/javascript" src="../functions/hammer.min.js"></script>
<script type="text/javascript" src="../functions/hammer-time.min.js"></script>
<!--Custom Scripts-->
<link rel="stylesheet" href="../styles/base.css?_=119">
<script type="text/javascript" src="../functions/core.js?_=119"></script>
<title>Error Page</title>
</head>
<body>
<!--LoadingScreen-->
<div class="loadingScreen" id="loadingScreen">
<div class="loading">
</div>
</div>
<!--ContentBase-->
<div id="table-container">
<div id="container" class="backTexture">
<div id="main">
<div id="notificationBack">
<div id="infoBase" class="infoBase">
<h1>Please restart</h1>
<hr>
<p>DM Buddy ran into a problem due to slow internet connection or due to uncompatiblity with your device. You can now either try again that action or restart the app. Sorry for the inconvenience caused.</p>
<hr>
<a class="button" href="#" onClick="window.history.back();">Try Again</a>
<a class="button" href="/tfd.html">Click to Restart</a>
</div>
</div>
</div>
</div>
</div>
<!--Scripts-->
<script>
function showerror(){
setTimeout(showBase, 10);
setTimeout(removeLoading, 100);
}
showerror();
</script>
</body>
</html>