public void createComponent()
{
this.add(new RequiredTextField("username", new PropertyModel(this,
"username")).setLabel(new Model("Username")));
this.add(new PasswordTextField("password", new PropertyModel(this,
"password")).setLabel(new Model("Password")));
this.add(HomePage.link("inscription", CreationComptePersonnePanel.class, null));
this.add(HomePage.link("motPasseOublie", RetrievePassword.class, null));
}