main_web/scott/email.html
Christopher Edwards 2df8ed0300 add files
2020-10-31 10:51:26 -04:00

111 lines
1.6 KiB
HTML
Executable File

<html>
<title>Test php email</title>
<body>
<form name="contactform" method="post" action="http://hearmewhisper.ddns.net/email.php">
<table width="450px">
<tr>
<td valign="top">
<label for="first_name">First Name *</label>
</td>
<td valign="top">
<input type="text" name="first_name" maxlength="50" size="30">
</td>
</tr>
<tr>
<td valign="top">
<label for="last_name">Last Name *</label>
</td>
<td valign="top">
<input type="text" name="last_name" maxlength="50" size="30">
</td>
</tr>
<tr>
<td valign="top">
<label for="email">Email Address *</label>
</td>
<td valign="top">
<input type="text" name="email" maxlength="80" size="30">
</td>
</tr>
<tr>
<td valign="top">
<label for="telephone">Telephone Number</label>
</td>
<td valign="top">
<input type="text" name="telephone" maxlength="30" size="30">
</td>
</tr>
<tr>
<td valign="top">
<label for="comments">Comments *</label>
</td>
<td valign="top">
<textarea name="comments" maxlength="1000" cols="25" rows="6"></textarea>
</td>
</tr>
<tr>
<td colspan="2" style="text-align:center">
<input type="submit" value="Submit"> <a href="http://www.freecontactform.com/email_form.php">Email Form</a>
</td>
</tr>
</table>
</form>
<div id="footer"><p id="foot_p">Copyright &copy; <span id="year"></span> Scott Monforte. Site built by <a href="mailto:hearmewhisper@gmail.com" style="text-decoration:none; color:black">Chris Edwards</a> </p></div>
<script>
var date = new Date();
document.getElementById("year").innerHTML = "&nbsp" + date.getFullYear() + "&nbsp";
</script>
</body>
</html>