Last active
August 29, 2015 14:14
-
-
Save machikoyasuda/6999b42f861ad01bcd31 to your computer and use it in GitHub Desktop.
week7.html
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> | |
<html lang="en"> | |
<form action="http://ga.kameronzach.com/fewd-12/week-7/forms/email-api/" method="POST"> | |
<input type="hidden" name="key" value="82b598c143888002128d54e8c51cd5aa"> | |
Email Address: <br><input id="userEmail" name="userEmail" type="text" size="37"><br> | |
Email From: <br><input id="sendEmailTo" name="sendEmailTo" type="text" size="37"><br> | |
Full name: <br><input id="userName" name="userName" type="text" size="37"><br> | |
Subject: <br><input id="userSubject" name="userSubject" type="text" size="37"><br> | |
Phone number: <br><input id="userPhone" name="userPhone" type="tel" size="37"><br> | |
Project description:<br> | |
<textarea id="userMessage" name="userMessage" rows="10" cols="35"> | |
Please enter a brief description here | |
</textarea> | |
<br> | |
Project budget: | |
<select id="userQuote" name="userQuote"> | |
<option value="$5,000 - $10,000"> $5,000 - $10,000 </option> | |
<option value="$10,001 - $20,000"> $10,001 - $20,000 </option> | |
<option value="$20,001 - $30,000"> $20,001 - $30,000 </option> | |
<option value="$30,001 - $40,000"> $30,001 - $40,000 </option> | |
<option value="$40,001 - $50,000"> $40,001 - $50,000 </option> | |
<option value="+$50,000"> +$50,000 </option> | |
</select> | |
<br> | |
User consent: | |
<input type="checkbox" id="userLegal" name="userLegal" value="1"> True <br> | |
<input type="submit" value="submit"> | |
</form> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment