The Submit Button Won't Work
The submit button is meant to be emailing the data in the form, but isn't doing anything at all. I am aware that the mailto action is unreliable, but I'm unable to use any server side code instead of it, and I don't know of any other ways to make it send an email.
Just a quick side-note, but is there a way to redirect the user after submitting the form without using server side code?
<form action="mailto:1sportsuk2016@gmail.com" enctype="text/plain" method="post" autocomplete="on">
<fieldset>
<legend style="color: #FFFFFF; font-size:22px;">Bookings Form: </legend>
<p>
<input id="fname" type="text" placeholder="First Name" name="First Name" required autocomplete > ...............
<label for="textarea">
<input id="email" type="email" placeholder="Email Address" name="email" required autocomplete>
<input id="lname" type="text" placeholder="Last Name" name="Last Name" required autocomplete>
A r e a : </label>
</p>
<p>
<textarea name="Feedback" id="Feedback" maxlength="250" placeholder="Please give us your feedback about our website and our facilities in 250 characters or less." cols="63"rows="3"></textarea>
</p>
<p> <span style="color: #FFFFFF">Please select your gender:<span style="color: #000000">.........</span></span> <span style="color: #FFFFFF">Male:
<input name="gender" type="radio" title="Male" value="Male">
<span style="color: #000000">.........</span>Female:
<input type="radio" name="gender" value="Female">
</span><br>
</p>
<p><input type="reset">
<input id="submit" type="submit" value="Submit">
</p>
</fieldset>
</form>