www.pdelong.com

Source for https://www.pdelong.com

git clone https://code.pdelong.com/www.pdelong.com.git

 1<!DOCTYPE html>
 2
 3<html lang="en">
 4  <head>
 5    <title>Base64 Decode</title>
 6    <meta charset="UTF-8" />
 7    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
 8    <meta property="og:title" content="Base64 Decode" />
 9    <meta property="og:type" content="website" />
10    <meta property="og:url" content="https://pdelong.com/base64" />
11
12    <style>
13      textarea {
14        width: 40em;
15        max-width: 100%;
16        height: 20em;
17      }
18    </style>
19  </head>
20
21  <body>
22    <form id="form">
23      <label for="input">Text:</label><br />
24      <textarea id="input" name="input"></textarea>
25      <br />
26      <button id="decode" type="submit">Decode</button>
27      <button id="encode" type="submit">Encode</button>
28    </form>
29
30    <br />
31
32    <textarea id="output"></textarea>
33
34    <div id="error"></div>
35
36    <script type="application/javascript" src="base64/index.js" async></script>
37  </body>
38</html>