<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="es" lang="es"> <head> <title>cpCrypt</title> <meta content="text-html; charset=UTF-8" http-equiv="Content-Type" /> <link rel="stylesheet" href="css/style.css" type="text/css" media="all" /> <script type="text/javascript" src="js/common.js"></script> </head> <body> <div id="box"> <div id="crypt_form"> <form method="post" action="crypt.php"> <p> <label for="string">String:</label> <input type="text" name="string" id="string" class="inputForm" /> </p> <p> <label for="key">Key:</label> <input type="password" name="key" id="key" class="inputForm" /> </p> <p align="center"> <input type="button" value="Encrypt" onclick="doCrypt( 'encrypt' , 'crypt.php' );" /> <input type="button" value="Decrypt" onclick="doCrypt( 'decrypt' , 'crypt.php' );" /> <input type="button" value="Copy" onclick="copyString" /> <input type="button" id="showButton" value="Show Field" onclick="showHideDiv();" /> </p> </form> </div> <div id="decrypt_string"> <p> <label for="decrypt_string_input">Encrypt/Decrypt string:</label> <input type="text" name="decrypt_string_input" id="decrypt_string_input" class="inputForm" /> </p> </div> </div> </body> </html>