示例#1
0
function light_form_input_password($name, $value = null, $width = null, $maxlength = null, $custom_html = null, $placeholder = null)
{
    return light_form_field($name, $value, $width, $maxlength, "password", $custom_html, $placeholder);
}
示例#2
0
function light_form_input_password($name, $value = "", $width = 0, $maxlength = 0, $custom_html = false)
{
    return light_form_field($name, $value, $width, $maxlength, "password", $custom_html);
}