-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
37 lines (36 loc) · 853 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<style type="text/css">
body {
width: 300px;
text-align: right;
}
.input{
width:270px;
}
.buttons{
margin:5px;
}
</style>
</head>
<body>
<div class="body">
<p>URLEncoder / Decoder</p>
<form>
<input type="text" id="url_to_encode" class="input"/>
<br/>
<input type="button" value="Current Url" id="current_url" class="buttons"/>
<input type="button" value="encode" id="encode" class="buttons"/>
</form>
<br/>
<br/>
<form>
<input type="text" id="url_to_decode" class="input"/>
<br/>
<input type="button" value="decode" id="decode" class="buttons"/>
</form>
</div>
<script type="text/javascript" src="backend.js"></script>
</body>
</html>