-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathoptions.html
49 lines (48 loc) · 1.56 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Ados Explainer Options</title>
<link rel="stylesheet" href="css/font-awesome.min.css">
<link rel="stylesheet" href="css/bulma.min.css">
</head>
<body>
<section class="section">
<div class="container">
<div class="modal is-active">
<div class="modal-background"></div>
<div class="modal-card">
<header class="modal-card-head">
<p class="modal-card-title">
<img style="margin-bottom:-0.25em;margin-right:0.25em;" src="img/adzerk32.png">
Options
</p>
</header>
<section class="modal-card-body">
<label class="label">
Adzerk API key
</label>
<div class="field has-addons">
<div class="control is-expanded has-icons-left">
<input id="apikey" type="password" class="input">
<span class="icon is-small is-left">
<i class="fa fa-key"></i>
</span>
</div>
<div class="control">
<button id="save" class="button is-info">
Save
</button>
</div>
</div>
</section>
<footer class="modal-card-foot">
</footer>
</div>
</div>
</div>
</section>
<script src="js/options.js"></script>
</body>
</html>