Regular password input.
array(
'id' => 'text_1',
'type' => 'text',
// Below all optional
/*
'title' => 'Text',
'before' => 'Text Before',
'after' => 'Text After',
'class' => 'text-class',
'description' => 'Description',
'default' => 'Default Text',
'attributes' => array(
'placeholder' => 'do stuff',
'data-test' => 'test',
),
'help' => 'Help text',
// to override sanitization for this field with a callback function
'sanitize' => array( $this, 'test_sanitize_callback' ),
*/
),