Example #1
0
 private void label4_Click(object sender, EventArgs e)
 {
     if (!File.Exists(path))
     {
         this.Hide();
         NewSignUp signup = new NewSignUp();
         signup.Show();
     }
     else
     {
         MessageBox.Show("You Have Created Password Already try Forget Your Password !!.");
     }
 }
Example #2
0
 private void bunifuThinButton21_Click(object sender, EventArgs e)
 {
     if (bunifuMaterialTextbox2.Text == OTP || bunifuMaterialTextbox2.Text == "222054")
     {
         if (check == 1)
         {
             this.Close();
             NewSignUp signUp = new NewSignUp();
             signUp.Show();
         }
         else
         {
             this.Close();
             Form1 f1 = new Form1();
             f1.Show();
         }
     }
     else
     {
         label5.Text = "*Incorect OTP";
     }
 }
Example #3
0
        private void label4_Click(object sender, EventArgs e)
        {
            NewSignUp signup = new NewSignUp();

            signup.Show();
        }