-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.html
65 lines (55 loc) · 1.32 KB
/
config.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Glide Browser Message Push</title>
<script src="script.js" type="application/javascript"></script>
</head>
<style type="text/css">
body {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 14px;
line-height: 20px;
color: #333333;
background-color: #ffffff;
}
#title {
}
#push_token, #server_url {
margin-top: 8px;
margin-bottom: 8px;
width: 300px;
height: 20px;
border: 1px solid #ccc;
border-radius: 5px;
padding: 5px;
}
label {
margin-top: 8px;
}
#push_token_btn {
width: 100px;
height: 34px;
border: 1px solid #ccc;
border-radius: 5px;
padding: 5px;
background-color: #fff;
cursor: pointer;
display: block;
}
</style>
<body>
<div>
<h3 id="title">Connect to Server</h3>
<div class="field">
<label for="server_url">Server URL</label><br>
<input type="text" id="server_url" value=""/>
</div>
<div class="field">
<label for="push_token">Token</label><br>
<input type="text" id="push_token" value=""/>
</div>
<button id="push_token_btn">Connect</button>
</div>
</body>
</html>