more space

This commit is contained in:
Boof 2023-01-12 11:36:51 +01:00 committed by GitHub
parent 6cf5117bc6
commit 0a047b2b83
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,11 +1,11 @@
<h1>Encode/decode data to base64</h1> <h1>Encode/decode data to base64</h1>
<form> <form>
<label>Input data</label><br> <label>Input data</label><br>
<textarea value="" rows="3" id="input" required></textarea><br> <textarea value="" rows="6" cols="80" id="input" required></textarea><br>
<button type="button" onclick="doencode();">Encode</button> <button type="button" onclick="doencode();">Encode</button>
<button type="button" onclick="dodecode();">Decode</button><br> <button type="button" onclick="dodecode();">Decode</button><br>
<label>Output</label><br> <label>Output</label><br>
<textarea id="output" readonly></textarea><br> <textarea id="output" rows="6" cols="80" readonly></textarea><br>
<button type="button" id="copy" onclick="docopy();">Copy</button> <button type="button" id="copy" onclick="docopy();">Copy</button>
</form> </form>