@Override
  public void createComponent(ConfigPanel cp) {
    cp.add(
        new JLabel(
            "<html>"
                + "<h1>"
                + header
                + "</h1>"
                + "<hr/><br/>"
                + "Enter the login details about your Battle.net account.<br/>"
                + "If the Battle.net account does not already exist, it will be created<br/>"
                + "for you automatically when you log in to Battle.net.<br/>"
                + "<br/></html>"));

    txtUsername = cp.makeGhost("Account", "BNU-Camel");
    txtPassword = cp.makePass("Password", null);
    prodKeys = new ProductAndCDKeys(cs, cp);

    if (cs.username != null) txtUsername.setText(cs.username);
    if (cs.password != null) txtPassword.setText(cs.password);
  }