SomeForm form = new SomeForm();
form.setPassword("pswd");
form.setUserName("uname");
return new HTMLForm()
.withAction("form-controller/process")
.withTextInput("userName", "userName", "${userName}")
.withPasswordInput("${password}")
.withModel(form);
}