-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
109 lines (105 loc) · 4.74 KB
/
index.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
<!doctype html>
<html lang="en">
<head>
<link href="https://cfl.dropboxstatic.com/static/images/favicon-vflUeLeeY.ico" rel="shortcut icon">
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<script src="https://code.jquery.com/jquery-3.2.1.min.js" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script>
<title>Dropbox Debug</title>
</head>
<body>
<br>
<div class="container">
<div class="row"><div class="col-md-12">
<div>
<img src="https://cfl.dropboxstatic.com/static/images/logo_catalog/dropbox_logo_glyph_m1.svg" width="3%"/>
<img src="https://cfl.dropboxstatic.com/static/images/logo_catalog/wordmark--dropbox_m1.svg" width="9%"/>
</div>
<br>
<h1 class="display-4">Debug page</h1>
<br/>
<p>Please copy and paste the following text into your support ticket to help us debug your connection:</p>
<a class="btn btn-primary" data-toggle="collapse" href="#collapseDebug" role="button" aria-expanded="false" aria-controls="collapseDebug">
Show debug information
</a>
<div class="collapse" id="collapseDebug">
<br/>
<div class="card card-body bg-light" id="b64-well"></div>
</div>
</div>
</div>
<br/>
<hr/>
<div class="row">
<div class="col-md-8">
<div>
<h5 class="card-title">Browser Info</h5>
<p id="browser_info-body"><img width="30" height="30" src="https://www.osu.edu/O-H-I-O/images/spinner.gif"/></p>
</div>
<div>
<h5 class="card-title">Plugins</h5>
<p id="plugins-body"><img width="30" height="30" src="https://www.osu.edu/O-H-I-O/images/spinner.gif"/></p>
</div>
<hr/>
<div class="row">
<div class="col-md-6">
<div>
<h5 class="card-title">Geolocation Info</h5>
<p id="geolocation-body"><img width="30" height="30" src="https://www.osu.edu/O-H-I-O/images/spinner.gif"/></p>
</div>
</div>
<div class="col-md-6">
<div>
<h5 class="card-title">Response Headers</h5>
<p id="headers-body"><img width="30" height="30" src="https://www.osu.edu/O-H-I-O/images/spinner.gif"/></p>
</div>
</div>
</div>
<hr/>
<div>
<h5 class="card-title" >DNS Check:</h5>
<h6 class="card-title" >A query result (IPv4):</h6>
<p id="dns-a-test"><img width="30" height="30" src="https://www.osu.edu/O-H-I-O/images/spinner.gif"/></p>
<h6 class="card-title" >AAAA query result (IPv6):</h6>
<p id="dns-aaaa-test"><img width="30" height="30" src="https://www.osu.edu/O-H-I-O/images/spinner.gif"/></p>
</div>
<hr/>
</div>
<div class="col-md-4">
<div id="pop" style="display: none">
<div class="card">
<div class="card-body">
<h5 class="card-title">Current PoP</h5>
<p class="card-text" id="pop-body"></p>
</div>
</div>
<br/>
</div>
<div id="speed-test" style="display: none">
<div class="card">
<div class="card-body">
<h5 class="card-title">Performance</h5>
<p class="card-text" id="speed-body"></p>
</div>
</div>
<br/>
</div>
<div id="latency" style="display: none">
<div class="card">
<div class="card-body">
<h5 class="card-title">PoP Latency</h5>
<p id="performance-body"</p>
</div>
</div>
</div>
</div>
</div>
</div>
<script src="main.js"></script>
</body>
</html>