Login Form using Class in C# through File Stream

Here is my class coding i have made LoginClass.cs. 
  1. using System;  
  2. using System.Collections.Generic;  
  3. using System.ComponentModel;  
  4. using System.Data;  
  5. using System.Drawing;  
  6. using System.Linq;  
  7. using System.Text;  
  8. using System.Threading.Tasks;  
  9. using System.Windows.Forms;  
  10. using System.IO;  
  11. using System.Collections;  
  12. namespace Win_Practice  
  13. {  
  14.     public class LoginClass  
  15.     {  
  16.         public void getdata()  
  17.         {  
  18.             string login, pass;  
  19.             TextReader tr;  
  20.             // refferene of file >> C:\Users\Zeeshan\Documents\Visual Studio 2012\Projects\Win_Practice\Win_Practice\bin\Debug  
  21.             using(tr = new StreamReader("Pass.txt"))  
  22.             {  
  23.                 login = tr.ReadLine();  
  24.                 pass = tr.ReadLine();  
  25.             }  
  26.             if (Frm_login.a == login && Frm_login.b == pass)  
  27.             {  
  28.                 // Frm_login alpha = new Frm_login();  
  29.                 // showing option form after successfull login  
  30.                 Form2 f2 = new Form2();  
  31.                 f2.Show();  
  32.             }  
  33.             else if (Frm_login.a == "" || Frm_login.b == "")  
  34.             {  
  35.                 MessageBox.Show("User id or password is missing");  
  36.             }  
  37.             else if (Frm_login.a != login || Frm_login.b != pass)  
  38.             {  
  39.                 MessageBox.Show("Invalid ID or Password");  
  40.             }  
  41.         }  
  42.     }  
  43. }  
And here is the form code of events, 
  1. using System;  
  2. using System.Collections.Generic;  
  3. using System.ComponentModel;  
  4. using System.Data;  
  5. using System.Drawing;  
  6. using System.Linq;  
  7. using System.Text;  
  8. using System.Threading.Tasks;  
  9. using System.Windows.Forms;  
  10. namespace Win_Practice  
  11. {  
  12.     public partial class Frm_login: Form  
  13.     {  
  14.         public static string a, b;  
  15.         public Frm_login()  
  16.         {  
  17.             InitializeComponent();  
  18.         }  
  19.         public void btnSave_Click(object sender, EventArgs e)  
  20.         {  
  21.             a = tbUserId.Text;  
  22.             b = tbPass.Text;  
  23.             LoginClass beta = new LoginClass();  
  24.             beta.getdata();  
  25.         }  
  26.         public void Frm_login_Load(object sender, EventArgs e)  
  27.         {}  
  28.     }  
  29. }