-
Notifications
You must be signed in to change notification settings - Fork 0
/
options.html
54 lines (54 loc) · 1.84 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<!DOCTYPE html>
<html>
<head>
<title>uPaste Uploader Options</title>
<link rel="stylesheet" type="text/css" media="screen" href="bootstrap.min.css" />
<script src="output.js"></script>
<script src="options.js"></script>
</head>
<body>
<div class="">
<header class="col-md-12">
<h1>uPaste Uploader Options</h1>
</header>
<div class="form-group col-md-12">
<p class="col-md-8">
<label for="expire">Expire</label>
<input type="range" min="1" max="262800" step="1" id="expire"/>
<span id="range-value"></span>
</p>
<p class="col-md-4 description">
Dictates when the paste you upload expires.
</p>
<p class="col-md-8">
<label for="privacy">Privacy</label>
<select id="privacy" name="privacy" class="form-control">
<option id="public_submit" value="0">public</option>
<option id="private_submit" value="1">private</option>
</select>
</p>
<p class="col-md-4 description">
Dictates who can see the paste.
</p>
<p class="col-md-8">
<label for="api_token">API Token</label>
<input id="api_token" class="form-control" placeholder="API Token" />
</p>
<p class="col-md-4 description">
Allows you to upload the paste to your personal account. <a target="_blank" href="http://upaste.me/account/settings">Get API Token</a>.
</p>
<p class="col-md-8">
<label for="latestPastesDisplaySize">Latest Pastes Display</label>
<input type="range" min="1" max="10" step="1" id="latestPastesDisplaySize" />
<span id="range-value-display"></span>
</p>
<p class="col-md-4 description">
This will regulate the amount of pastes displayed when clicking the button in the toolbar.
</p>
</div>
<footer class="col-md-12">
<h6>All pastes will be saved your the clipboard for easy access.</h6>
</footer>
</div>
</body>
</html>