28 lines
631 B
HTML
Executable File
28 lines
631 B
HTML
Executable File
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>URL Editor</title>
|
|
<link rel="stylesheet" href="style.css">
|
|
<script src="main.js"></script>
|
|
</head>
|
|
<body>
|
|
|
|
<header>
|
|
<h1>URL Editor</h1>
|
|
Edit URL encoded strings
|
|
</header>
|
|
|
|
<main>
|
|
|
|
<label for="raw">Raw</label>
|
|
<br>
|
|
<div contenteditable spellcheck="false" id="raw" class="textarea" oninput="rawUpdated()"></div>
|
|
|
|
<label for="formatted">Formatted</label>
|
|
<br>
|
|
<div contenteditable spellcheck="false" id="formatted" class="textarea" oninput="formattedUpdated()"></div>
|
|
|
|
</main>
|
|
</body>
|
|
</html> |