-
Notifications
You must be signed in to change notification settings - Fork 1
/
popup.html
46 lines (43 loc) · 1.67 KB
/
popup.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>
<html>
<head>
<title>Web Libs</title>
<link rel="stylesheet" href="css/main.css">
<script src="js/jquery.js"></script>
<script src="js/weblibs.js"></script>
</head>
<body>
<!-- <img src="img/logo.png" alt="Logo" class="logo"/> -->
<div class="tabs">
<div class="tab">
<input type="radio" id="tab-1" name="tab-group-1" checked>
<label for="tab-1">Weblib</label>
<div class="content">
<form action="" class="cf">
<section class="">
<button type="submit" id="submit-button" value="submit">Submit</button>
<button type="submit" id="clear-button" value="clear">Clear</button>
</section>
<section class="cf">
<input type="text" id="bad" placeholder="Bad" autofocus="autofocus"/>
<input type="text" id="good" placeholder="Good"/>
</section>
<section class='extra'>
<p><label><input type='checkbox' id='beginningofword' checked='checked'>Only at Beginning of word</label></p>
<p><label><input type='checkbox' id='endofword' checked='checked'>Only at End of word</label></p>
<p><label><input type='checkbox' id='caseinsensitive'> Case Insensitive</label></p>
</section>
</form>
<div id='words-list'></div>
</div>
</div>
<div class="tab">
<input type="radio" id="tab-2" name="tab-group-1">
<label for="tab-2">Settings</label>
<div class="content content2">
<h1>Hey look number two!</h1>
</div>
</div>
</div>
</body>
</html>