initial commit
This commit is contained in:
25
pwform.html
Normal file
25
pwform.html
Normal file
@@ -0,0 +1,25 @@
|
||||
<form method=get action="pwgen.cgi">
|
||||
<div align=center>
|
||||
<table border=0>
|
||||
<tr>
|
||||
<td>Password Length:</td>
|
||||
<td><input name=passlen value="%(passlen)s" size="2" /><select name=length_is_bits>
|
||||
<option value=0 %(length_is_bits==0 and 'selected' or '')s>Characters
|
||||
<option value=1 %(length_is_bits!=0 and 'selected' or '')s>Bits
|
||||
</select></td>
|
||||
</tr>
|
||||
<tr><td colspan=2><input type=checkbox name=use_ucase value=1 %(use_ucase and 'checked' or '')s>Use upper-case Letters</td></tr>
|
||||
<tr><td colspan=2><input type=checkbox name=use_lcase value=1 %(use_lcase and 'checked' or '')s>Use lower-case Letters</td></tr>
|
||||
<tr><td colspan=2><input type=checkbox name=use_digits value=1 %(use_digits and 'checked' or '')s>Use digits</td></tr>
|
||||
<tr><td colspan=2><input type=checkbox name=use_punct value=1 %(use_punct and 'checked' or '')s>Use all punctuation</td></tr>
|
||||
<tr><td colspan=2><input type=checkbox name=excludes value=1 %(excludes and 'checked' or '')s>Exclude 1/l/I and 0/O</td></tr>
|
||||
<tr>
|
||||
<td>Extra Symbols:</td>
|
||||
<td><input name=extra_symbols value="%(extra_symbols)s"></td>
|
||||
</tr>
|
||||
</table>
|
||||
<input type=submit name=submit value="Generate Password"><input type=reset>
|
||||
</div>
|
||||
</form>
|
||||
|
||||
<p align="center">[ <a href="ppgen.cgi">Click here for the passphrase generator</a> ]</p>
|
||||
Reference in New Issue
Block a user