-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.html
More file actions
64 lines (59 loc) · 1.77 KB
/
index.html
File metadata and controls
64 lines (59 loc) · 1.77 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<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" />
<style>
#output {
font-family: monospace;
}
.stext {
font-size: 5vw;
}
body {
font-family: sans-serif;
}
</style>
</head>
<body onload="breakingChangeAlert(event)">
<div>
<form id="pGen" action="javascript:domEdit()">
<table id="render_table">
<tr>
<td>
<p class="stext">Key: </p>
</td>
<td><input class="stext" name="keyvalue" type="password" placeholder="pass123" maxlength="32" id="key" /></td>
</tr>
<tr>
<td>
<p class="stext">Website: </p>
</td>
<td><input class="stext mono" name="sitevalue" placeholder="facebook.com" type="text" maxlength="128"
id="site" autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false" /></td>
</tr>
<tr>
<td> </td>
<td><input class="stext" type="submit" value="Generate" /></td>
</tr>
<tr>
<td>
<p class="stext">Password: </p>
</td>
<td><input class="stext" readonly name="outvalue" type="text" maxlength="16" id="output" />
</tr>
<tr>
<td>
<input type="checkbox" id="modern-version" onchange="domEdit()" checked />
<label for="modern-version">Enable modern generation strategy</label>
</td>
</tr>
</table>
</form>
</div>
<br />
<br />
<p><a href="https://github.com/meta1203/PasswordMaker/" target="_blank">Source on GitHub</a></p>
</body>
</html>