summaryrefslogtreecommitdiff
path: root/layouts/contact/single.html
diff options
context:
space:
mode:
Diffstat (limited to 'layouts/contact/single.html')
-rw-r--r--layouts/contact/single.html41
1 files changed, 29 insertions, 12 deletions
diff --git a/layouts/contact/single.html b/layouts/contact/single.html
index cca9ab9..852446c 100644
--- a/layouts/contact/single.html
+++ b/layouts/contact/single.html
@@ -4,34 +4,51 @@
</div>
<div class="container content">
<div class="row">
- <form class="contactform" action="/submit/" method="POST">
+ <form class="contactform" action="https://www.iamfabulous.de/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" required>
+ <input class="u-full-width" placeholder="mail@domain.com" id="from" name="from" type="email">
</div>
<div class="six columns">
<label for="subject">subject</label>
- <input class="u-full-width" placeholder="hello" id="subject" name="subject" type="text" required>
+ <input class="u-full-width" placeholder="hello" id="subject" name="subject" type="text">
</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" required></textarea>
+ <div class="row">
+ <div class="twelve columns">
+ <label for="message">message</label>
+ <textarea class="u-full-width" placeholder="type your message here …" id="message" name="message"></textarea>
+ </div>
+ </div>
<!--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>
+ <div class="row">
+ <div class="six columns">
+ <label>captcha</label>
+ <img id="captcha-img" src="#" alt="captcha image" width=240 height=80>
+ <input id="captcha-id" type="hidden" name="captchaid" required>
+ </div>
+ <div class="six columns">
+ <label for="captcha-solution">verification</label>
+ <input class="u-full-width" id="captcha-solution" type="text" name="captchaanswer" placeholder="enter the code displayed in the image" required>
+ </div>
+ </div>
+ <div class="row margin-top">
+ <div class="twelve columns">
+ <input class="button-primary contactform-button" value="submit" type="submit">
+ <a class="button margin-left-extra-small" href="../" title="back to index">cancel</a>
+ </div>
+ </div>
</form>
- <div/>
-<div/>
+ </div>
+</div>
<div class="row center">
<p class="twelve columns">
</p>
</div>
+<script src="/captcha.js" defer async></script>
{{partial "footer.tmpl" .}}