|
| 1 | +package Login_Sys; |
| 2 | + |
| 3 | +import java.awt.EventQueue; |
| 4 | + |
| 5 | +import javax.swing.JFrame; |
| 6 | +import javax.swing.JLabel; |
| 7 | +import javax.swing.JOptionPane; |
| 8 | + |
| 9 | +import java.awt.BorderLayout; |
| 10 | +import javax.swing.JTextField; |
| 11 | + |
| 12 | +import Reservationform.Reservation;//importing Reservation package |
| 13 | + |
| 14 | +import javax.swing.JPasswordField; |
| 15 | +import javax.swing.JButton; |
| 16 | +import javax.swing.JSeparator; |
| 17 | +import java.awt.Font; |
| 18 | +import java.awt.Color; |
| 19 | +import java.awt.event.ActionListener; |
| 20 | +import java.awt.event.ActionEvent; |
| 21 | + |
| 22 | +public class Login_System { |
| 23 | + |
| 24 | + private JFrame frame; |
| 25 | + private JTextField textField; //textField is variable for the username that is entered |
| 26 | + private JPasswordField txtPassword; ////textPassword is variable for the password that is entered |
| 27 | + |
| 28 | + /** |
| 29 | + * Launch the application. |
| 30 | + */ |
| 31 | + public static void main(String[] args) { |
| 32 | + EventQueue.invokeLater(new Runnable() { |
| 33 | + public void run() { |
| 34 | + try { |
| 35 | + Login_System window = new Login_System(); |
| 36 | + window.frame.setVisible(true); |
| 37 | + } catch (Exception e) { |
| 38 | + e.printStackTrace(); |
| 39 | + } |
| 40 | + } |
| 41 | + }); |
| 42 | + } |
| 43 | + |
| 44 | + /** |
| 45 | + * Create the application. |
| 46 | + */ |
| 47 | + public Login_System() { |
| 48 | + initialize(); |
| 49 | + } |
| 50 | + |
| 51 | + /** |
| 52 | + * Initialize the contents of the frame. |
| 53 | + */ |
| 54 | + private void initialize() {//Defining labels that would appear on the login form |
| 55 | + frame = new JFrame(); |
| 56 | + frame.setBounds(200, 200, 813, 581); |
| 57 | + frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); |
| 58 | + frame.getContentPane().setLayout(null); |
| 59 | + |
| 60 | + JLabel lblNewLabel = new JLabel("Login to Railway Reservation System");//Heading |
| 61 | + lblNewLabel.setFont(new Font("Tahoma", Font.BOLD, 24)); |
| 62 | + lblNewLabel.setBounds(172, 62, 481, 44); |
| 63 | + frame.getContentPane().add(lblNewLabel); |
| 64 | + |
| 65 | + JLabel IblUsername = new JLabel("Username");//Username |
| 66 | + IblUsername.setFont(new Font("Tahoma", Font.PLAIN, 16)); |
| 67 | + IblUsername.setBounds(167, 160, 129, 31); |
| 68 | + frame.getContentPane().add(IblUsername); |
| 69 | + |
| 70 | + JLabel IblPassword = new JLabel("Password");//Password |
| 71 | + IblPassword.setFont(new Font("Tahoma", Font.PLAIN, 16)); |
| 72 | + IblPassword.setBounds(167, 214, 83, 20); |
| 73 | + frame.getContentPane().add(IblPassword); |
| 74 | + |
| 75 | + textField = new JTextField();//Creating textField for entering username |
| 76 | + textField.setBounds(306, 162, 187, 31); |
| 77 | + frame.getContentPane().add(textField); |
| 78 | + textField.setColumns(10); |
| 79 | + |
| 80 | + txtPassword = new JPasswordField();//Creating textPassword for entering password |
| 81 | + txtPassword.setBounds(306, 211, 187, 31); |
| 82 | + frame.getContentPane().add(txtPassword); |
| 83 | + |
| 84 | + JButton btnNewButton = new JButton("Log In");//Login as submit button |
| 85 | + btnNewButton.addActionListener(new ActionListener() { |
| 86 | + public void actionPerformed(ActionEvent e) {//On clicking login following operations would be performed |
| 87 | + |
| 88 | + String password = txtPassword.getText(); |
| 89 | + String username = textField.getText(); |
| 90 | + |
| 91 | + if(password.contains("king")&& username.contains("one")) {//If the username and password matches |
| 92 | + txtPassword.setText(null); |
| 93 | + textField.setText(null); |
| 94 | + Reservation info=new Reservation();//Reservation form opens |
| 95 | + Reservation.main(null); |
| 96 | + |
| 97 | + } |
| 98 | + else {//If doesn't matches error |
| 99 | + JOptionPane.showMessageDialog(null, "Invalid Login Details", "Login Error", JOptionPane.ERROR_MESSAGE); |
| 100 | + txtPassword.setText(null); |
| 101 | + textField.setText(null); |
| 102 | + } |
| 103 | + } |
| 104 | + }); |
| 105 | + btnNewButton.setFont(new Font("Tahoma", Font.BOLD, 16)); |
| 106 | + btnNewButton.setBounds(143, 353, 89, 33); |
| 107 | + frame.getContentPane().add(btnNewButton); |
| 108 | + |
| 109 | + JButton btnNewButton_1 = new JButton("Reset");//Reset button for clearing all fields |
| 110 | + btnNewButton_1.addActionListener(new ActionListener() { |
| 111 | + public void actionPerformed(ActionEvent e) { |
| 112 | + textField.setText(null); |
| 113 | + txtPassword.setText(null); |
| 114 | + } |
| 115 | + }); |
| 116 | + btnNewButton_1.setFont(new Font("Tahoma", Font.BOLD, 16)); |
| 117 | + btnNewButton_1.setBackground(new Color(240, 240, 240)); |
| 118 | + btnNewButton_1.setBounds(306, 353, 89, 33); |
| 119 | + frame.getContentPane().add(btnNewButton_1); |
| 120 | + |
| 121 | + JButton btnNewButton_2 = new JButton("Exit");//Exit button to exit form |
| 122 | + btnNewButton_2.addActionListener(new ActionListener() { |
| 123 | + public void actionPerformed(ActionEvent e) { |
| 124 | + JFrame frmLoginSystem = new JFrame("Exit");//Dialog box to confirm exit |
| 125 | + if(JOptionPane.showConfirmDialog(frmLoginSystem, "Confirm if you want to exit", "Login Systems", JOptionPane.YES_NO_OPTION)== JOptionPane.YES_NO_OPTION) { |
| 126 | + System.exit(0); |
| 127 | + } |
| 128 | + |
| 129 | + } |
| 130 | + }); |
| 131 | + btnNewButton_2.setFont(new Font("Tahoma", Font.BOLD, 16)); |
| 132 | + btnNewButton_2.setBounds(473, 353, 89, 33); |
| 133 | + frame.getContentPane().add(btnNewButton_2); |
| 134 | + |
| 135 | + JSeparator separator = new JSeparator();//Separators to create different sections in form |
| 136 | + separator.setBounds(29, 303, 657, -19); |
| 137 | + frame.getContentPane().add(separator); |
| 138 | + |
| 139 | + JSeparator separator_1 = new JSeparator();//Separators to create different sections in form |
| 140 | + separator_1.setBounds(100, 117, 571, -5); |
| 141 | + frame.getContentPane().add(separator_1); |
| 142 | + |
| 143 | + JSeparator separator_2 = new JSeparator();//Separators to create different sections in form |
| 144 | + separator_2.setBounds(43, 419, 637, -33); |
| 145 | + frame.getContentPane().add(separator_2); |
| 146 | + |
| 147 | + JSeparator separator_3 = new JSeparator();//Separators to create different sections in form |
| 148 | + separator_3.setBounds(82, 290, 607, 2); |
| 149 | + frame.getContentPane().add(separator_3); |
| 150 | + |
| 151 | + JSeparator separator_4 = new JSeparator();//Separators to create different sections in form |
| 152 | + separator_4.setBounds(82, 119, 607, 14); |
| 153 | + frame.getContentPane().add(separator_4); |
| 154 | + |
| 155 | + JSeparator separator_5 = new JSeparator();//Separators to create different sections in form |
| 156 | + separator_5.setBounds(43, 117, 1, 166); |
| 157 | + frame.getContentPane().add(separator_5); |
| 158 | + |
| 159 | + JSeparator separator_6 = new JSeparator();//Separators to create different sections in form |
| 160 | + separator_6.setBounds(43, 110, 1, 174); |
| 161 | + frame.getContentPane().add(separator_6); |
| 162 | + |
| 163 | + JSeparator separator_7 = new JSeparator();//Separators to create different sections in form |
| 164 | + separator_7.setBounds(43, 282, 1, 2); |
| 165 | + frame.getContentPane().add(separator_7); |
| 166 | + } |
| 167 | +} |
0 commit comments