从GitHub页面提交formspree.io时出错

时间:2016-02-06 02:26:22

标签: html forms github

我在GitHub页面上托管一个网站,当我尝试提交formspree.io表单时,我收到以下错误:

error

这是我的代码:

<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错误造成的?

2 个答案:

答案 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",则会将发件人电子邮件更改为可点击链接。(在阅读邮件时提示)

  • 如果这也不起作用,并且显示“您必须使用服务器.Formspree将无法在作为HTML页面浏览的页面中使用。”

然后在<head>标记内放置:

<meta name="referrer" content="origin">

希望它有效!!

一切顺利:)

答案 1 :(得分:2)

我遇到了完全相同的问题 - 将以下内容添加到您的字段中:

<meta name="referrer" content="origin" />

这对我有用。