mirror of
https://github.com/S2-/pwgen.git
synced 2025-08-03 09:10:04 +02:00
initial commit
This commit is contained in:
26
popup/pwgen.html
Normal file
26
popup/pwgen.html
Normal file
@@ -0,0 +1,26 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<link rel="stylesheet" href="pwgen.css"/>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<form>
|
||||
<div>
|
||||
<label for"length">length</label> <input type="number" id="length" value="14" min="0">
|
||||
</div>
|
||||
<div>
|
||||
<label for"special">include special chars</label> <input type="checkbox" id="special" checked="checked">
|
||||
</div>
|
||||
<div>
|
||||
<label for"pw">your password</label> <input type="text" id="pw">
|
||||
</div>
|
||||
<div>
|
||||
<button id="copy">copy to clipboard</button><button id="new">give me an other one</button>
|
||||
</div>
|
||||
</form>
|
||||
<script src="pwgen.js"></script>
|
||||
</body>
|
||||
|
||||
</html>
|
Reference in New Issue
Block a user