34 lines
1.2 KiB
HTML
34 lines
1.2 KiB
HTML
<form method=get action="ppgen.cgi">
|
|
<div align=center>
|
|
<table border=0>
|
|
<tr>
|
|
<td>Number of words:</td>
|
|
<td><input name="wordcount" value="%(wordcount)s" size="2" /></td>
|
|
</tr>
|
|
<tr>
|
|
<td>Minimum word length:</td>
|
|
<td><input name="minlen" value="%(minlen)s" size="2" /> characters</td>
|
|
</tr>
|
|
<tr>
|
|
<td>Maximum word length:</td>
|
|
<td><input name="maxlen" value="%(maxlen)s" size="2" /> characters</td>
|
|
</tr>
|
|
<tr>
|
|
<td>Random capitalization:</td>
|
|
<td><select name="randcaps">
|
|
<option value="none" %(randcaps=='none' and 'selected' or '')s>No capitalization</option>
|
|
<option value="first" %(randcaps=='first' and 'selected' or '')s>Randomly capitalize the first letter</option>
|
|
<option value="one" %(randcaps=='one' and 'selected' or '')s>Randomly capitalize any one letter</option>
|
|
<option value="all" %(randcaps=='all' and 'selected' or '')s>Randomly capitalize all letters</option>
|
|
</select></td>
|
|
<tr>
|
|
<td>Length of numbers between words:</td>
|
|
<td><input name="numlen" value="%(numlen)s" size="2" /> digits</td>
|
|
</tr>
|
|
</table>
|
|
<input type=submit name=submit value="Generate Passphrase"><input type=reset>
|
|
</div>
|
|
</form>
|
|
|
|
<p align="center">[ <a href="pwgen.cgi">Click here for the password generator</a> ]</p>
|