Skip to content

Instantly share code, notes, and snippets.

@mofizul21
Created April 25, 2015 22:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mofizul21/5ba2e3c90c6ded2aa99e to your computer and use it in GitHub Desktop.
Save mofizul21/5ba2e3c90c6ded2aa99e to your computer and use it in GitHub Desktop.
PHP Email Contact Form
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Thank you!</title>
<!-- define some style elements-->
<style>
h1
{
font-family : Arial, Helvetica, sans-serif;
font-size : 16px;
font-weight : bold;
}
label,a,body
{
font-family : Arial, Helvetica, sans-serif;
font-size : 12px;
}
</style>
<!-- a helper script for vaidating the form-->
</head>
</head>
<body>
<h1>Thank you!</h1>
<p>Thank you for submitting the form. We will contact you soon!</p>
<p>Please wait... You will redirect in a new page withib 3 seconds.</p>
<script type="text/javascript">
function Redirect(){
window.location="http://folio.themepack.net/index.html";
}
document.write("You will be redirected to a new page in 3 seconds");
setTimeout('Redirect()', 3000);
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment