-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
65 lines (64 loc) · 1.69 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
<html>
<head>
<title>info-beamer fleet upgrader</title>
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
<link rel="shortcut icon" href="favicon.png" type="image/png"/>
<style>
body {
font-family: Arial;
}
.upgrader {
margin: 50px auto 0;
width: 500px;
border: 1px solid #ccc;
padding: 10px;
border-radius: 5px;
}
.centered {
text-align: center;
}
.log {
width: 100%;
height: 400px;
background-color: #eee;
border: 1px solid #ccc;
margin: 2px 0;
}
.btn-block {
font-size: 120%;
width: 100%;
}
.float-right {
float: right;
}
hr {
border: 0;
border-bottom: 1px solid #eee;
margin: 20px 0;
}
</style>
</head>
<body>
<div id='app'>
<div class='centered'>
<a href='https://info-beamer.com'><< Back to info-beamer.com</a>
</div>
<fleet-upgrader></fleet-upgrader>
</div>
<script>
window.CONFIG = {
client_id: "f58dc2f599f9842396249776cfece518",
redirect_uri: window.location.origin + window.location.pathname,
authorization_endpoint: "https://info-beamer.com/oauth/authorize",
token_endpoint: "https://info-beamer.com/oauth/token",
requested_scopes: "info device:full",
api_root: "https://info-beamer.com/api/v1/",
app_root: window.location.pathname,
}
</script>
<script src="vue.js"></script>
<script src="vuex.js"></script>
<script src="vue-resource.js"></script>
<script src="app.js"></script>
</body>
</html>