拖延的价值&放入密码&确认密码字段显示为纯文本

时间:2013-03-22 05:08:05

标签: jquery passwords placeholder

我在注册页面使用占位符。在那里,密码和确认密码字段就在那里。如果我们将一些值拖放到密码字段中,密码字段不会加密,而是显示值。

enter image description here

在regForm中,

->add('password','password',array('property_path'=>false,'attr'=>array('placeholder'=>'Password'))) 
->add('confirmPassword','password',array('property_path'=>false,'attr'=>array('placeholder'=>'Confirm password')))




In twigtemplate,

{{ form_widget(form.password) }}

{{ form_widget(form.confirmPassword) }} 





$(function() {
    // Invoke the plugin
    $('input, textarea').placeholder();
    var html;
    if (html) {
    $('<p class="note">' + html + '</p>').insertAfter('form');
    }
   });

1 个答案:

答案 0 :(得分:1)

将您定义的输入字段类型检查为“密码”

<input type="password">