email.setInputPrompt("Enter email");
form.addComponent(email);
PasswordField password = new PasswordField("Password");
password.setInputPrompt("Password");
form.addComponent(password);
Upload upload = new Upload("File input", null);
form.addComponent(upload);
Label help = new Label("Example block-level help text here.");