我无法通过使用 Netlify-Forms 提交我的联系页面,我收到 404 错误。
我有以下表格: -
<form name="Portfolio_Contact"
method="POST"
data-netlify="true"
data-netlify-honeypot="bot-field"
action="/thank-you">
<div className="form-group">
<input
type="text"
name="name"
placeholder="name"
className="form-control"
/>
<input
type="email"
placeholder="email"
name="email"
className="form-control"
/>
<textarea
name="message"
rows="5"
placeholder="message"
className="form-control"
></textarea>
<div data-netlify-recaptcha="true"></div>
</div>
<button type="submit" className="submit-btn btn">
send me your message
</button>
</form>
当我提交它时,我首先收到一个 404 错误,然后按预期获得我的感谢页面。
难道我做错了什么?我可以在表单部分看到我的“Portfolio_Contact”。
感谢您的帮助和时间。