bitlong/index.html
hexahigh b75286c0c4 fix
2023-08-24 16:18:41 +02:00

36 lines
1.2 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Bitlong</title>
<script src="custom1.js"></script>
<script src="binary.js" defer></script>
<script src="index.js" defer></script>
<script src="create.js" defer></script>
</head>
<body>
<div style="text-align: center;">
<h1>Bitlong</h1>
<h2>Make your url's longer</h2>
<br>
<label for="urlInput">Put your url here</label>
<br>
<input id="urlInput" type="text">
<br>
<label for="method">Select a method</label>
<br>
<select id="method">
<option value="b64">Base64</option>
<option value="binary">Binary</option>
<option value="b64_binary">Binary + Base64</option>
<option value="b64_binary_double">Binary + Base64 * 2</option>
<option value="b64_binary_quadruple">Binary + Base64 * 4</option>
</select>
<br>
<button id="createButton">Create url</button>
<br>
<textarea style="width: 50%;" id="output" disabled></textarea><button onclick="copyOutput()">Copy</button>
</div>
</body>
</html>