-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
34 lines (31 loc) · 1.02 KB
/
index.html
File metadata and controls
34 lines (31 loc) · 1.02 KB
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
<!DOCTYPE html>
<html>
<head>
<title>Hash Calculator</title>
<script defer type="module" src="script.js"></script>
<link rel="stylesheet" href="style.css">
<link rel="icon" href="icon.png">
</head>
<body>
<h1 class="title">Hash Calculator</h1>
<p class="subtitle">Hash is a calculation which cannot be calculate back from the result to the original input. It
is secure especially use for
storing
password.</p>
<br>
<div class="appWrapper">
<form id="InputForm">
<input name="Input" placeholder="Input">
<select name="type">
<option value="SHA-1"> SHA-1</option>
<option value="SHA-256"> SHA-256</option>
<option value="SHA-384"> SHA-384</option>
<option value="SHA-512"> SHA-512</option>
</select>
<input type="submit" value="Get Hash Value">
</form>
<br>
<textarea readonly id="display"></textarea>
</div>
</body>
</html>