我在GitHub页面上托管一个网站,当我尝试提交formspree.io表单时,我收到以下错误:
这是我的代码:
<form action="http://formspree.io/example@example.com" method="post">
<div class="row uniform collapse-at-2">
<div class="6u">
<input type="text" name="_replyto" placeholder="Email">
</div>
</div>
<div class="12u">
<textarea name="Message" placeholder="Message..." rows="4" cols="50" maxlength="500"></textarea>
</div>
<br>
<div style="display:none">
<input type="hidden" name="_subject" value="New submission!">
<input type="hidden" name="_next" value="thanks.html">
<input type="text" name="_gotcha">
</div>
<div class="row uniform">
<div class="12u">
<ul class="actions">
<li>
<input type="submit" class="special" value="Send">
</li>
</ul>
</div>
</div>
</form>
这是由于代码错误,GitHub页面错误还是formpree错误造成的?
答案 0 :(得分:8)
<form method="POST" action="http://formspree.io/YOUREMAILHERE">
<input type="email" name="email" placeholder="Your email">
<br>
<textarea name="message" placeholder="Your message"></textarea>
<button type="submit">Send</button>
</form>
在/后,将您的电子邮件放在“http://formspree.io/YOUREMAILHERE”中。如果您希望将name="email"
更改为name="_replyto"
,则会将发件人电子邮件更改为可点击链接。(在阅读邮件时提示)
然后在<head>
标记内放置:
<meta name="referrer" content="origin">
希望它有效!!
一切顺利:)
答案 1 :(得分:2)
我遇到了完全相同的问题 - 将以下内容添加到您的字段中:
<meta name="referrer" content="origin" />
这对我有用。