forked from meta1203/PasswordMaker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
21 lines (21 loc) · 783 Bytes
/
index.html
File metadata and controls
21 lines (21 loc) · 783 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<html>
<head>
<script type="text/javascript" src="sha256.js"></script>
<script type="text/javascript" src="password.js"></script>
<title>Password Maker</title>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
</head>
<body>
<div>
<form id="pGen" action="javascript:domEdit()">
<p>Key: <input name="keyvalue" type="password" placeholder="pass123" maxlength="32" id="key"/></p>
<p>Website: <input name="sitevalue" placeholder="facebook.com" type="text" maxlength="128" id="site"/></p>
<p><input type="submit" value="Generate" /></p>
</form>
<p>Password: <input readonly name="outvalue" type="text" maxlength="16" id="output"/></p>
</div>
<br />
<br />
<p><a href="https://github.com/meta1203/PasswordMaker/" target="_blank">Source on GitHub</a></p>
</body>
</html>