-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpwdfly.html
executable file
·57 lines (55 loc) · 1.88 KB
/
pwdfly.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<!DOCTYPE html PUBLIC '-//W3C//DTD XHTML 1.0 Strict//EN'
'http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd'>
<html xmlns='http://www.w3.org/1999/xhtml' xml:lang='en' lang='en'>
<head>
<link rel="stylesheet" type="text/css" href="css/style.css">
</head>
<body bgcolor="#000000" id="body_elem">
<script src="js/placevalues.js"></script>
<table>
<tr>
<td>
<input class = "textbox" type = "text" name = "url" placeholder = "URL" id = "url">
</td>
<td rowspan="2">
<img src = "images/bird50.png" width="100" height="100"></img>
</td>
</tr>
<tr>
<td>
<input class = "textbox" type = "text" name = "email" placeholder = "email" id = "email">
</td>
</tr>
<tr>
<td>
<input class = "textbox2" type = "password" name = "master_pwd" placeholder = "Master Password" id = "master_pwd" autocomplete="off">
</td>
<td>
<input class = "textbox4" type = "password" id = "site_pwd" name = "site_pwd" placeholder = "Site Password" autocomplete="off" class="showpassword">
<script src="js/onfocus_script.js"></script>
</td>
</tr>
<tr>
<td>
<input class = "textbox3" type = "text" id = "version" name = "version" placeholder = "Version">
</td>
<td>
<font color="white"><h2>Show Password:</font>
<input type = "checkbox" id = "check"></h2></font>
<script src="js/display_pwd.js"></script>
</td>
</tr>
<tr>
<td>
<input class = "btn-custom" type = "button" value = "Generate Password" name = "generate_pwd" id = "generate_pwd">
<script src="js/generate_password.js"></script>
<script src="js/scrypt.js"></script>
</td>
<td>
<input class = "btn-custom" type = "button" value = "Place Password" name = "place_pwd" id = "place_pwd">
<script src="js/place_pwd_site.js"></script>
</td>
</tr>
</table>
</body>
</html>