diff options
-rw-r--r-- | Contact.html | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/Contact.html b/Contact.html index f1760d6..ee907c4 100644 --- a/Contact.html +++ b/Contact.html @@ -46,16 +46,19 @@ <h3>Quick Contact</h3> <h4>Contact me today, and get a reply within 24 hours!</h4> <fieldset> - <input placeholder="Your name" type="text" tabindex="1" required autofocus> + <input placeholder="Your name" type="text" tabindex="1" name="Name" required autofocus> + <input type="text" name="_gotcha" style="display:none" /> + <input type="hidden" name="_subject" value="New submission!" /> + <input type="hidden" name="_next" value="https://navanchauhan.github.io/Thanks.html" /> </fieldset> <fieldset> <input placeholder="Your Email Address" type="email" tabindex="2" name="_replyto" required> </fieldset> <fieldset> - <input placeholder="Your Phone Number" type="tel" tabindex="3" required> + <input placeholder="Your Phone Number" type="tel" tabindex="3" name="Phone Number" > </fieldset> <fieldset> - <textarea placeholder="Type your Message Here...." tabindex="5" required></textarea> + <textarea placeholder="Type your Message Here...." tabindex="4" name="Message" required></textarea> </fieldset> <fieldset> <button name="submit" type="submit" value="Send" id="contact-submit" data-submit="...Sending">Submit</button> |