-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
27 lines (27 loc) · 836 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<title>Password generator</title>
<link rel="stylesheet" href="style.css">
<script src="pkg/wasm.js"></script>
<script type=module src="main.js"></script>
</head>
<body>
<h1>Password Generator</h1>
<br>
<div class="form" id="form">
<h3>Master Password</h3>
<input type="password" id="master">
<h3>Confirm Password</h3>
<input type="password" id="master-confirm">
<h3>Domain</h3>
<input type="text" id="domain">
<br><br><br><br><br>
<button id="generate">Generate</button>
<div class="password-show">
<p id="password"> </p>
</div>
</div>
</body>
</html>