SF2,登录表单出现两次

时间:2014-08-09 09:59:04

标签: php symfony twig fosuserbundle

我使用fos_user_bundle来管理我的用户。当我转到mysite / login时,登录表单会出现两次。

我覆盖了login.html.twig模板。

我更改了UserBundle:

class UserBundle extends Bundle
{
  public function getParent()
  {
    return 'FOSUserBundle';
  }
}

和:Ressources / views / Security / login.html.twig

{% trans_default_domain 'FOSUserBundle' %}
{% extends '::layout.html.twig' %}

{% block content %}

  {% block fos_user_content %}
    {% if error %}
        <div>{{ error|trans }}</div>
    {% endif %}

    <form action="{{ path("fos_user_security_check") }}" method="post">
        <input type="hidden" name="_csrf_token" value="{{ csrf_token }}" />

        <label for="username">{{ 'security.login.username'|trans }}</label>
        <input type="text" id="username" name="_username" value="{{ last_username }}" required="required" />

        <label for="password">{{ 'security.login.password'|trans }}</label>
        <input type="password" id="password" name="_password" required="required" />

        <input type="checkbox" id="remember_me" name="_remember_me" value="on" />
        <label for="remember_me">{{ 'security.login.remember_me'|trans }}</label>

        <input type="submit" id="_submit" name="_submit" value="{{ 'security.login.submit'|trans }}" />
    </form>
  {% endblock fos_user_content %}

{% endblock content %}

1 个答案:

答案 0 :(得分:0)

在我的layout.html.twig中,我给了:

{% block container %}
  {{ parent() }}  
  {% block content %}
  {% endblock content %}
{% endblock container %}

我删除了{{parent()}},现在,它可以正常工作。