I am a web designer and i dont have much experiance when it comes to creating contact forms, normally i make them and someone else makes them work. Im in a jam right now and need to add reCAPTCHA to a form and have it function. My normal person is no longer available and im in a jam.
<form class="well span8">
<div class="row">
<div class="span3">
<label>First Name</label>
<input type="text" class="span3" placeholder="Your First Name">
<label>Last Name</label>
<input type="text" class="span3" placeholder="Your Last Name">
<label>Email Address</label>
<input type="text" class="span3" placeholder="Your email address">
<label>Reason For Contact</label>
<select id="subject" name="subject" class="span3">
<option value="na" selected="">Choose One:</option>
<option value="service">Product Questions</option>
<option value="suggestions">Become a Seller</option>
<option value="product">Other</option>
</select>
</div>
<div class="span5">
<label>Message</label>
<textarea name="message" id="message" class="input-xlarge span5" rows="10"></textarea>
<button type="submit" class="btn btn-primary pull-right">Send</button>
</div>
</div>
</form>