Spaces:
Running
Running
File size: 1,471 Bytes
d077623 6e7360e b7dc9f5 6e7360e |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 |
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="./css/style.css">
<script type="text/javascript" src="./js/jquery.min.js"></script>
<script type="text/javascript" src="./js/md5.js" charset="utf-8"></script>
<script type="text/javascript" src="./js/main.js" charset="utf-8"></script>
</head>
<body style="background: white;">
<div class="tab">
<button class="tablinks" onclick="openTab(event, 'Tab1')" id="defaultOpen">file2base64</button>
<button class="tablinks" onclick="openTab(event, 'Tab2')">strlen</button>
<button class="tablinks" onclick="openTab(event, 'Tab3')">txt2md5</button>
</div>
<div id="Tab1" class="tabcontent">
<h1>File β Base64</h1>
<input type="file" id="fileInput">
</div>
<div id="Tab2" class="tabcontent">
<h1>String β Length</h1>
<textarea rows="14"></textarea>
Char count : <text id="len">0</text><br>
Word count : <text id="words">0</text>
</div>
<div id="Tab3" class="tabcontent">
<h1>Plaintext β MD5</h1>
<table border="0">
<tr>
<td><input id="plain" type="text"></td>
<td><button id="gen">Generate</button></td>
</tr>
<tr>
<td><input id="md5" type="text"></td>
<td><button id="cp">Copy</button></td>
</tr>
</table>
</div>
</body>
</html> |