-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
35 lines (29 loc) · 1 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SHA-256 Hash | Henry Azer</title>
<link rel="icon" href="/resources/favicon.ico">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
<h1>SHA-256 Hash</h1>
<div class="form-group">
<input type="text" id="inputString" placeholder="String" oninput="generateHash()">
</div>
<div class="form-group">
<input type="text" id="salt" placeholder="Salt" oninput="generateHash()">
</div>
<div id="toast">Copied!</div>
<div id="result" class="form-group">
<textarea id="hashedOutput" readonly onclick="copyToClipboard()" placeholder="Result"></textarea>
</div>
<div class="footer">
<p>Powered By Henry-Azer © 2024 All rights Reserved</p>
</div>
</div>
<script src="script.js"></script>
</body>
</html>