Untitled

 avatar
unknown
plain_text
2 years ago
388 B
2
Indexable
package loginandsignup;

/**
 *
 * @author OLIXX
 */
public class LoginAndSignup {

    /**
     * @param args the command line arguments
     */
    public static void main(String[] args) {
        Login LoginFrame = new Login();
        LoginFrame.setVisible(true);
        LoginFrame.pack();
        LoginFrame.setLocationRelativeTo(null); 
        
    }
    
}
Editor is loading...
Leave a Comment