diff options
| author | Max | 2017-04-21 19:37:48 +0200 |
|---|---|---|
| committer | Max | 2017-04-21 19:37:48 +0200 |
| commit | 456e316e598319ab7fcd1bd439db1887222fefe2 (patch) | |
| tree | 944d4654c738583cc2b507a1d15de1f8d06f01d0 | |
| parent | 91dbd7cfc1f1b1037df4592cbd2f62a8bd908af0 (diff) | |
| download | iamfabulous.de-456e316e598319ab7fcd1bd439db1887222fefe2.tar.gz | |
Adds captcha support.
| -rw-r--r-- | layouts/contact/single.html | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/layouts/contact/single.html b/layouts/contact/single.html index 4be3a1b..cca9ab9 100644 --- a/layouts/contact/single.html +++ b/layouts/contact/single.html @@ -4,24 +4,27 @@ </div> <div class="container content"> <div class="row"> - <form class="contactform" action="https://www.iamfabulous.de/submit/" method="POST"> + <form class="contactform" action="/submit/" method="POST"> <div class="row"> <div class="six columns"> <label for="from">your email</label> - <input class="u-full-width" placeholder="mail@domain.com" id="from" name="from" type="email"> + <input class="u-full-width" placeholder="mail@domain.com" id="from" name="from" type="email" required> </div> <div class="six columns"> <label for="subject">subject</label> - <input class="u-full-width" placeholder="hello" id="subject" name="subject" type="text"> + <input class="u-full-width" placeholder="hello" id="subject" name="subject" type="text" required> </div> </div> <input type="text" class="hp" value="" name="gotit"> <label for="message">message</label> - <textarea class="u-full-width" placeholder="type your message here …" id="message" name="message"></textarea> + <textarea class="u-full-width" placeholder="type your message here …" id="message" name="message" required></textarea> <!--label class="example-send-yourself-copy"> <input type="checkbox"> <span class="label-body">Send a copy to yourself</span> </label--> + <iframe src="https://www.iamfabulous.de/newcaptcha" border=0> + </iframe> + <input type="text" name="capanswer" required> <input class="button-primary contactform-button" value="submit" type="submit"> <a style="margin-left: 10px;" class="button" href="../" title="back to index">cancel</a> </form> |
