<%@ Page Title="Agent Photo Submission" Language="C#" MasterPageFile="~/MasterPage_Inner.master" %>
<script runat="server">
</script>
<asp:Content ID="Content1" ContentPlaceHolderID="head" Runat="Server">
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server">
<form id="photoForm" action="http://www.mytucker.com/Photos/sendPhoto.php" method="post">
<table border="0" cellpadding="2" width="450">
<h4>Agent Photo Submission</h4>
<p>Please use this form to submit your photo. Also, please select where you would like
to use your photo.</p>
<p><b>Minimum Requirements</b><br />
Photo Size: 2" x 2.5" <br />
DPI: 360</p>
<tr>
<td style="width:140px; margin-bottom: 5px;"><label for="name">Name: </label></td>
<td><input name="name" id="name" type="text" /></td>
</tr>
<tr></tr>
<tr>
<td><label for="phonenumber">Phone Number: </label></td>
<td><input name="phonenumber" id="phonenumber" type="text" /></td>
</tr>
<tr></tr>
<tr>
<td><label for="email">E-Mail: </label></td>
<td><input name="email" id="email" type="text" /></td>
</tr>
<tr></tr>
<tr>
<td>Where would you like to use your photo?</td>
<td><input type="checkbox" name="whereto" value="Web" />Website Only <br />
<input type="checkbox" name="whereto" value="All" />All Your Marketing Pieces <br />
<input type="checkbox" name="whereto" value="Cards" />Business Cards</td>
</tr>
<tr></tr>
<tr>
<td>Choose File to Upload:</td>
<td><input type="file" name="datafile" /></td>
</tr>
<tr></tr>
<tr>
<td>Comments:</td>
<td><textarea rows="2" cols="20" name="comments"></textarea></td>
</tr>
<tr>
<td><input type="submit" value="Submit" /></td>
</tr>
</table>
</form>
</asp:Content>
|