
/* we need not all, but do not care about wildcards */
import javax.swing.*;
import java.awt.*;

/* this is the test frame to make some tests with our panels */
public class TestFrame extends JFrame {

/* the constructior should be add the pannels */
public TestFrame () {
	super();
	getContentPane().add (new LoginPanel ());
	pack();
}

/* and the main, he construct the frame and show */
public static void main (String[] args) {
	(new TestFrame ()).show();
}

}

