SimpleForm没有提交

时间:2014-11-01 19:58:44

标签: html simple-form

我是simpleform的新用户(以及一般的html),我无法为我的jekyll网站设置联系表单。这是我用于联系页面的来源。电子邮箱似乎在提交时检查输入是否不一致,但我没有被重定向或获得任何输出。

提前致谢!

<section id="contact">
<div class="container">
    <div class="row">
        <div class="col-lg-12 text-center">
            <h2 class="section-heading">Contact</h2>
            <h3 class="section-subheading text-muted">Thanks for Contacting Me!</h3>
        </div>
    </div>
    <div class="col-lg-12 text-center">
        <form action="http://getsimpleform.com/messages?form_api_token=2d6935f301203a8a2b595dfa0141a48a" method="post">
            <!-- the redirect_to is optional, the form will redirect to the referrer on submission -->
            <input type='hidden' name='redirect_to' value='http://www.google.com' />
            <!-- all your input fields here.... -->
            Name:<input type='text' name='name'/></br>
            Email:<input type='email' name='email'/></br>
            Message:<textarea name='message'></textarea>
            <button type='submit' value='Submit Form'>Submit:</button>
        </form>

    </div>
</div>
</section>

0 个答案:

没有答案