This commit is contained in:
Boof 2023-03-08 11:59:07 +01:00 committed by GitHub
parent c606f2b74b
commit 1bf5b4441c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -8,12 +8,12 @@
<h1 style="color: #ffffff;">Encode/decode data to base64</h1>
<form>
<label style="color: #ffffff;">Input data</label><br>
<textarea style="background: #343538;" value="" rows="6" cols="80" id="input" required></textarea><br>
<button class="button" style="--color:#1e9bff;"type="button" onclick="doencode();">Encode</button>
<button type="button" style="--color: #ff1867;" class="button" onclick="dodecode();">Decode</button><br>
<textarea style="background: #343538; color: #ffffff;" value="" rows="6" cols="80" id="input" required></textarea><br>
<button class="button" style="--color:#1e9bff; background: bottom;"type="button" onclick="doencode();">Encode</button>
<button type="button" style="--color: #ff1867; background: bottom;" class="button" onclick="dodecode();">Decode</button><br>
<label style="color: #ffffff;">Output</label><br>
<textarea style="background: #343538;" id="output" rows="6" cols="80" readonly></textarea><br>
<button type="button" id="copy" onclick="docopy();">Copy</button>
<textarea style="background: #343538; color: #ffffff;" id="output" rows="6" cols="80" readonly></textarea><br>
<button class="button" type="button" id="copy" style="--color:#1e9bff; background: bottom;" onclick="docopy();">Copy</button>
</form>
<script>