Substitution Cipher Chart:

Aplanumeric with common symbols.
This particular page is not form driven.
AV4BA*
CxQDs0
Ek^Fop
GZ6HDH
IY^JqL
Ki!LpY
Mo%Nmz
Oh%PB#
QdQRN9
Su7TD%
UK9Vaf
WBLXa*
YnSZJ*

Code used to generete this page:

I'm feeling waaay to lazy for format this nicely, so I've just kind of tossed it out here for you.

<?php

$chars = array('a','b','c','d','e','f','g','h','i','j','k','l','m','n','o','p','q','r','s','t','u','v','w','x','y','z', 'A','B','C','D','E','F','G','H','I','J','K','L','M','N','O','P','Q','R','S','T','U','V','W','X','Y','Z', '0','1','2','3','4','5','6','7','8','9','!','@','#','$','%','^','&','*','(',')');

$keys = array('A','B','C','D','E','F','G','H','I','J','K','L','M','N','O','P','Q','R','S','T','U','V','W','X','Y','Z');

$cnt = 0;

print '<table border="1" bordercolor="black" cellspacing="0" cellpadding="0" width="150" height="300"><tr>';

foreach ($keys as $x) {

print '<td align="center">' . $x . '</td>';

$rand_keys = array_rand($chars, 2);

print '<td align="center">' . $chars[$rand_keys[0]] . $chars[$rand_keys[1]] . "</td>";

if ($cnt %2) {

print '</tr> <tr>';}

$cnt++; }

print '</tr></table>';

?>