-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
31 lines (30 loc) · 1.09 KB
/
index.html
File metadata and controls
31 lines (30 loc) · 1.09 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
<!doctype html>
<html>
<head>
<script type="text/javascript" src="assets/js/generate.js"></script>
<script type="text/javascript" src="assets/js/info.js"></script>
</head>
<body>
<h2>Password Generator:</h2>
<form name="myform" method="post" action="">
<table width="100%" border="0">
<tr>
<td width="120">Length:</td>
<td>
<input name="length" type="number">
</td>
</tr>
<tr>
<td>Password:</td>
<td>
<input name="row_password" disabled type="text" size="40">
<input type="button" class="button" value="Generate" onClick="generate();" tabindex="2">
<br>
<input type="button" class="button" value="READ ME BEFORE CLICKING GENERATE" onClick="info();" tabindex="2">
</td>
</tr>
</table>
</form>
<script src="/assets/js/console.js"></script>
</body>
</html>