отображение логина для пользователя fos - PullRequest
0 голосов
/ 26 ноября 2018

У меня были некоторые проблемы с использованием php bin / console fos: user: create в моем проекте, поэтому я скопировал поставщика другого проекта, который работает хорошо, а затем я создал файл User.php, но при отображении логина.Я получаю это display for my project, в то время как в другом проекте он заменяет другие атрибуты security.login.username на имя пользователя и security.login.password на пароль, и т. Д. display of the project i copied the vendor from

{% trans_default_domain 'FOSUserBundle' %}

{% if error %}
    <div>{{ error.messageKey|trans(error.messageData, 'security') }}</div>
{% endif %}

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

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

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

    <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>

1 Ответ

0 голосов
/ 26 ноября 2018

Вам нужно установить переводчик на ~ в вашем файле app / config / config.yml.

# app/config/config.yml

framework:
    translator: ~
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...