-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathoptions.html
39 lines (39 loc) · 1.65 KB
/
options.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
<!DOCTYPE html>
<html>
<head>
<title>Slinky options</title>
<script type="text/javascript" src="bower_components/jquery/dist/jquery.min.js"></script>
<script type="text/javascript" src="js/options.js"></script>
<link rel="stylesheet" type="text/css" href="css/styles.css">
</head>
<body>
<header>
<h1>Slinky Options</h1>
</header>
<section>
<input id="token" placeholder="Type your slack token here" type="text"></input>
<a id="check" class="btn btn-inverted" href="#">Check<i class="icon icon-check"></i></a>
<input id="channel" placeholder="Type your team's channel name here e.g. #example" type="text"></input>
</section>
<section>
<a id="save" class="btn" href="#">Save<i class="icon icon-check"></i></a>
<a id="clear" class="btn btn-inverted" href="#">Clear</a>
<p id="info-message"><i class="icon icon-exclamation-circle"></i><span></span></p>
</section>
<footer>
<a id="help" href="#" title="help">Need Help<i class="icon icon-question-circle"></i></a>
<ul id="help-contents">
<li>
You need a Slack token in order to authenticate your interactions through Slinky.
To get one go to <a href="https://api.slack.com/web#authentication">SlackAPI</a> and generate a token in 'Authentication' section.
</li>
<li>
Once you add your token you can check authorization with Slack by clicking Check button.
</li>
<li>
Your team's channel will be the <strong>default channel</strong> to share your browsing with. You can always change this option later.
</li>
</ul>
</footer>
</body>
</html>