{% extends '@FOSUser/layout.html.twig' %}{% block fos_user_content %}<div class="card tw-rounded-xl tw-overflow-hidden"><div class="card-body">{{ include('@FOSUser/Security/login_content.html.twig') }}</div></div>{% endblock fos_user_content %}{% block javascripts %}<script>{{ inlineJsWrapperBegin() }}jQuery('#showpassword').click(function () {if (jQuery(this).hasClass('fa-eye')) {jQuery(this).removeClass('fa-eye');jQuery(this).addClass('fa-eye-slash');jQuery('#password').attr('type', 'password');jQuery('#set_own_password_password_first').attr('type', 'password')} else {jQuery(this).removeClass('fa-eye-slash');jQuery(this).addClass('fa-eye');jQuery('#password').attr('type', 'text');jQuery('#set_own_password_password_first').attr('type', 'text')}});{{ inlineJsWrapperEnd() }}</script>{% endblock %}