-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpopup.html
35 lines (35 loc) · 1.38 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
<!DOCTYPE html>
<html>
<head>
<title>MultiConvertor [popup]</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<link rel='stylesheet' href='css/popup.css' />
<script type='text/javascript' src='scripts/encode-functions.js'></script>
<script type='text/javascript' src='scripts/popup.js'></script>
</head>
<body>
<fieldset class="config">
<span id="spanmethod">
<label for="encmethod" id="labelencmethod">Algorithm:</label>
<select name="encmethod" id="encmethod" accesskey="M" tabindex="2"></select>
</span>
<button id="getsel" class="toolbtn">SEL</button>
<button id="geturl" class="toolbtn">URL</button>
<button id="gethelp" class="toolbtn">HELP</button>
<span id="spandirection">
<label for="encdirection" id="labelencdirection">Direction:</label>
<select name="encdirection" id="encdirection" accesskey="D" tabindex="3">
<option value="guess">guess</option>
<option value="encode">encode</option>
<option value="decode">decode</option>
</select>
</span>
</fieldset>
<form action="#">
<fieldset class="inputbox">
<textarea id="inputtext" type="text" accesskey="I" name="inputtext" cols="82" rows="25" required placeholder="Something to convert..." tabindex="1"></textarea>
<button id="encode">Convert</button>
</fieldset>
</form>
</body>
</html>