/*
 * Log_On_Error_Window.java
 *
 * Created on October 23, 2003, 9:41 AM
 */

/**
 *
 * @author  Tyler Vodak
 */
public class Log_On_Error_Window extends javax.swing.JFrame {
    
    /** Creates new form Log_On_Error_Window */
    public Log_On_Error_Window() {
        initComponents();
    }
    
    /** This method is called from within the constructor to
     * initialize the form.
     * WARNING: Do NOT modify this code. The content of this method is
     * always regenerated by the Form Editor.
     */
    private void initComponents() {//GEN-BEGIN:initComponents
        jOptionPane1 = new javax.swing.JOptionPane();

        setTitle("Unable to Log On");
        addWindowListener(new java.awt.event.WindowAdapter() {
            public void windowClosing(java.awt.event.WindowEvent evt) {
                exitForm(evt);
            }
        });

        jOptionPane1.setMessage("Cannot verify password. Check to make sure user name is entered correctly and try again." );
        getContentPane().add(jOptionPane1, java.awt.BorderLayout.CENTER);

        pack();
    }//GEN-END:initComponents
    
    /** Exit the Application */
    private void exitForm(java.awt.event.WindowEvent evt) {//GEN-FIRST:event_exitForm
        System.exit(0);
    }//GEN-LAST:event_exitForm
    
    /**
     * @param args the command line arguments
     */
    public static void main(String args[]) {
        new Log_On_Error_Window().show();
    }
    
    
    // Variables declaration - do not modify//GEN-BEGIN:variables
    private javax.swing.JOptionPane jOptionPane1;
    // End of variables declaration//GEN-END:variables
    
}