rendered paste bodypackage wicketDemo;import wicket.markup.html.WebPage;import wicket.markup.html.basic.Label;import wicket.markup.html.basic.MultiLineLabel;import wicket.model.CompoundPropertyModel;public class ThankYouPage extends WebPage { public ThankYouPage(FormModel filledForm) { CompoundPropertyModel model = new CompoundPropertyModel(filledForm); add(new Label("carModel", model)); add(new Label("carYear", model)); add(new Label("carMillage", model)); add(new MultiLineLabel("carFailureText", model)); }}