-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
65 lines (62 loc) · 2.07 KB
/
index.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>x-www-form-urlencoded to JSON</title>
<link rel="shortcut icon" href="assets/favicon.ico" type="image/x-icon" />
<meta
name="description"
content="A simple converter to transform a x-www-form-urlencoded string to JSON"
/>
<meta
name="keywords"
content="x-www-form-urlencoded, json, converter, transform, string, object, convert, tool, online, free, simple, easy, fast, quick, web, website"
/>
<meta name="author" content="Fabrício Pinto Ferreira" />
<meta name="robots" content="index, follow" />
<meta name="og:title" content="x-www-form-urlencoded to JSON" />
<meta
name="og:description"
content="A simple converter to transform a x-www-form-urlencoded string to JSON"
/>
<meta
name="og:url"
content="https://pferreirafabricio.github.io/x-www-form-urlencoded-to-json/"
/>
<meta name="og:site_name" content="x-www-form-urlencoded to JSON" />
<meta name="og:type" content="website" />
<meta name="og:image" content="assets/logo.jpeg" />
<meta property="og:image:width" content="1024" />
<meta property="og:image:height" content="1024" />
<link rel="stylesheet" href="index.css" />
<script src="main.js"></script>
</head>
<body>
<header></header>
<main>
<textarea
type="text"
id="input"
placeholder="x-www-form-urlencoded"
style="width: 400px"
></textarea>
<div id="result">
<div class="actions">
<button id="convert">
<img src="assets/convert.svg" alt="Convert" />
<span>Convert</span>
</button>
<button id="copy">
<img src="assets/copy.svg" width="24" alt="Convert"/>
<span>Copy</span>
</button>
</div>
<div class="output">
Converted value:
<pre><code id="output"></code></pre>
</div>
</div>
</main>
</body>
</html>