Added a button to copy result. Plus note for password.

This commit is contained in:
2026-01-19 16:47:13 +01:00
parent 5b88979921
commit af7fa0b87e
5 changed files with 80 additions and 3 deletions

View File

@@ -4,13 +4,13 @@
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>TNC's Hashing Tool</title>
<title>The Night Club's Hashing Tool</title>
<link rel="stylesheet" href="/static/css/style.css">
</head>
<body>
<div class="container">
<h2>TNC's Hashing Tool</h2>
<h2>The Night Club's Hashing Tool</h2>
<label for="algorithm">Algorithm</label>
<select id="algorithm">
@@ -19,7 +19,7 @@
</select>
<label for="password">Password (minimum 16 characters)</label>
<label for="password">Password (you will use this to login, minimum 16 characters)</label>
<input id="password" type="password" placeholder="Enter password" minlength="16">
@@ -38,6 +38,7 @@
<label for="result">Result</label>
<button id="resultBtn" type="button">Copy result</button>
<textarea id="result" rows="4" readonly placeholder="Result will appear here"></textarea>
</div>