Netlify 提交按钮不起作用我该如何解决?

Netlify submit button doesnt work how can i fix it?

当我点击提交按钮时没有任何反应。有人可以帮助我吗?

<form name="Personal_Contact" method="POST" netlify>
  <input type="text" class="inputs" placeholder="Name... *" required>
  <input type="email" class="inputs" placeholder="Email...">
  <textarea name="" id="" cols="30" rows="10" class="textarea" placeholder="Your message... *" required minlength="10"></textarea>
  <button type="submit" class="rightbutton"> SEND </button>
</form>

您可能需要添加一个操作来解决问题。

<form name="Personal_Contact" method="POST" netlify action="/">
  <input type="text" class="inputs" placeholder="Name... *" required>
  <input type="email" class="inputs" placeholder="Email...">
  <textarea name="" id="" cols="30" rows="10" class="textarea" placeholder="Your message... *" required minlength="10"></textarea>
  <button type="submit" class="rightbutton"> SEND </button>
</form>

我已经修好了。我再次部署了该站点并将 name="" 添加到我的输入中,它现在可以工作了。