Hello,
I'm using the API to populate a form in the frontend with PW 2.5
My code for appending password field
// create password inputs
$field = $modules->get("InputfieldPassword");
$field->label = "Set new Password";
$field->attr("id+name","pass");
$field->required = 1;
$form->append($field);
Whatever string I set $field->label to, I always get "Set Password" as label.
Is it possible at all to change the label on InputfieldPassword?