return panel;
}
private JPanel getLoginPanel(LauncherAPI api)
{
final JPanel panel = new TexturedPanel(api.getBackground());
panel.setLayout(new BorderLayout());
panel.setPreferredSize(new Dimension(100, 100));
panel.add(new LogoPanel(), "West");
panel.add(statusText, "Center");
buildLoginBox(false);
panel.add(center(loginBox), "East");
return panel;
}