webtools / index.html
admin
upl base codes
6e7360e
raw
history blame
1.41 kB
<!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>
Length : <text>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>