mirror of
https://github.com/S2-/pwgen.git
synced 2025-08-02 17:00:03 +02:00
47 lines
1.3 KiB
HTML
47 lines
1.3 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<link rel="stylesheet" href="chrome://global/skin/global.css" type="text/css" />
|
|
<link rel="stylesheet" href="chrome://global/skin/in-content/common.css" type="text/css" />
|
|
|
|
<link rel="stylesheet" href="pwgen.css"/>
|
|
</head>
|
|
|
|
<body>
|
|
<div class="copied" style="display: none;">password copied to clipboard</div>
|
|
|
|
<form>
|
|
|
|
<div>
|
|
<label for"length">length <input type="number" id="length" value="14" min="0" name="length"></label>
|
|
</div>
|
|
|
|
<div>
|
|
<input type="checkbox" id="special" checked="checked" name="special">
|
|
<label for"special">include special chars</label>
|
|
</div>
|
|
|
|
<div>
|
|
<label for="pw">your password</label>
|
|
<input type="text" id="pw" name="pw">
|
|
</div>
|
|
|
|
<div>
|
|
<button id="copy" style="margin-left: 0;">copy to clipboard</button><button id="new">give me an other one</button>
|
|
</div>
|
|
|
|
<hr>
|
|
|
|
<div>
|
|
<input type="checkbox" id="directcopy" name="directcopy" title="next time when i click the button, copy the new password immediately to the clipboard">
|
|
<label for="directcopy">direct copy</label>
|
|
</div>
|
|
|
|
</form>
|
|
<script src="pwgen.js"></script>
|
|
</body>
|
|
|
|
</html>
|