-
Notifications
You must be signed in to change notification settings - Fork 5
/
index.html
41 lines (41 loc) · 1.38 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
36
37
38
39
40
41
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>PwdHash Web</title>
<meta name="description" content="An HTML form that calls the JavaScript implementation of PwdHash by Standford University">
<link rel="stylesheet" type="text/css" href="style.css" />
<link rel="icon" type="image/x-icon" href="favicon.ico" />
<script src="script/md5.js" type="text/javascript"></script>
<script src="script/domain-extractor.js" type="text/javascript"></script>
<script src="script/hashed-password.js" type="text/javascript"></script>
<script src="script/browser.js" type="text/javascript"></script>
</head>
<body>
<form id="pwdhash">
<div>
<label for="domain">Address</label>
<input id="domain" type="text" placeholder="https://www.example.com/" autofocus="autofocus" />
</div>
<div>
<label for="password">Password</label>
<input id="password" type="password" placeholder="Password" />
</div>
<div>
<label for="hash">PwdHash</label>
<input id="hash" type="text" placeholder="Type to generate" readonly="readonly" />
</div>
</form>
<footer>
<p id="footerlinks">
<a id="readme"
href="https://github.com/quassy/pwdhash/blob/gh-pages/README.md"
title="Learn how this extension works"
target="_blank"
rel="noopener noreferer">
Readme
</a>
</p>
</footer>
</body>
</html>