-
Notifications
You must be signed in to change notification settings - Fork 0
/
options.html
executable file
·46 lines (46 loc) · 1.44 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
<!doctype html>
<meta name="viewport" content="width=device-width, initial-scale=1">
<html>
<head>
<title>API Key</title>
<link href="css/style.css" rel="stylesheet" type="text/css" media="screen" />
<style>
.container {
/* avoid an excessively wide status text */
text-overflow: ellipsis;
overflow: hidden;
max-width: 500px;
width: 400px;
height: 100%;
}
#status {
padding: 10px;
}
</style>
</head>
<body>
<div class="container">
<div class="row">
<div class="col-md-3">
<a href="popup.html"><button type="button" class="btn btn-primary btn-xs" id="close">Close</button></a>
</div>
</div>
<div class="row">
<div class="col-md-3">
<hr>
<div class="form-group">
<label for="APIKey">Your Rosette API Key</label>
<input type="text" size="35" class="form-control" id="user-key" placeholder="Enter key">
</div>
<p>Don't have one? <a href="https://developer.rosette.com/signup" target="_blank">Get one</a></p>
<div id="status"></div>
<button type="submit" class="btn btn-default left" id="save">Save</button>
<div class="bg-success" id="save-message" style="visibility:hidden"></div>
<br />
<hr>
</div>
</div>
</div>
</body>
<script src="options.js"></script>
</html>