if (content != null && password_field == null) {
ipp.getCenterBorderPane().setCenter(content);
} else if (content != null && password_field != null) {
BorderPane center_pane = new BorderPane();
ipp.getCenterBorderPane().setCenter(center_pane);
center_pane.setTop(content);
if (content.getText() != null && content.getText().length() < 64) {
content.setTranslateX(120.0);
}
FlowPane flow = new FlowPane();
flow.setHgap(2);
flow.setVgap(2);
flow.setAlignment(Pos.CENTER);
flow.getChildren().add(password_field);
password_field.setPaddingValue(new Insets(3, 0, 0, 0));
center_pane.setCenter(flow);
} else if (content == null && password_field != null) {
ipp.getCenterBorderPane().setCenter(password_field);
}