D:
/
vhosts
/
inpeacenet.com
/
httpdocs
/
inpeacenet
/
Contact
/
up file
home
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>AJAX Contact Form</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <script type="text/javascript" src="js/functionAddEvent.js"></script> <script type="text/javascript" src="js/contact.js"></script> <script type="text/javascript" src="js/xmlHttp.js"></script> <style type='text/css'> #cont_form { width:100%; padding:20px; background-color:#fff; font-family:Arial; color:#00376c; font-size:12px; } fieldset { border:0;margin:0;padding:0; } label { display:block; } input.text,textarea { width:450px;font:14px Arial;color:#00376c;padding:3px;margin:5px 0 10px 0;border:1px solid #ccc; } input.submit { padding:2px 5px;color:#00376c; } </style> </head> <body> <div id="cont_form"> <p id="loadBar" style="display:none;"> <strong>Sending Email...</strong> <img src="img/loading.gif" alt="Loading..." title="Sending Email" /> </p> <p id="emailSuccess" style="display:none;"> <strong style="color:green;">Success! Your Email has been sent.</strong> </p> <div id="contactFormArea"> <form action="scripts/contact.php" method="post" id="cForm"> <fieldset> <label for="posName">Name:</label> <input class="text" type="text" size="25" name="posName" id="posName" value = "<?php print $_POST["name"]; ?>" /> <label for="posEmail">Email:</label> <input class="text" type="text" size="25" name="posEmail" id="posEmail" value = "<?php print $_POST["name"]; ?>"/> <label for="posRegard">Regarding:</label> <input class="text" type="text" size="25" name="posRegard" id="posRegard" value = "<?php print $_POST["name"]; ?>"/> <label for="posText">Message:</label> <textarea cols="70" rows="8" name="posText" id="posText" value = "<?php print $_POST["name"]; ?>"></textarea> <div style="visibility:hidden"> <label for="selfCC"> <input type="checkbox" name="selfCC" id="selfCC" value="send" /> Send CC to self </label> </div> <br /> <label> <input class="submit" type="submit" name="sendContactEmail" id="sendContactEmail" value=" Send Email " /> </label> </fieldset> </form> </div> </div> </body> </html>