我建立了自己的注册表单,当我尝试注册用户时,它没有反应。FOSUserBundle 的一切工作都很好。此外,当我使用默认的 FOSUserBundle 注册表单时,它可以工作并将所有数据保存在我的表中。我应该只使用 FOSUserBundle 中的默认表单还是什么?
这是我制作的表格:
<form action="{{ path('fos_user_registration_register') }}" method="post">
<p>
<input type="text" name="name"/>
</p>
<p>
<input type="text" name="surname" />
</p>
<p>
<input type="text" name="email" />
</p>
<p>
<input type="password" name="password"/>
</p>
<p>
<input type="submit" name="submit" value="Sign up"/>
</p>
</form>