name.setWidth("50%");
form.addComponent(name);
DateField birthday = new DateField("Birthday");
birthday.setValue(new Date(80, 0, 31));
form.addComponent(birthday);
TextField username = new TextField("Username");
username.setValue(sg.nextString(false) + sg.nextString(false));
username.setRequired(true);
form.addComponent(username);