Exemplo n.º 1
0
 private void SaveButton_Click(object sender, EventArgs e)
 {
     if (this.groupBox1.Text == "Przypomnienie hasła")
     {
         LoggedUserUtility.remindPassword(textBox2.Text);
     }
     else if (this.groupBox1.Text == "Zmiana hasła")
     {
         LoggedUserUtility.changePassword(this, textBox1.Text, textBox2.Text, textBox3.Text);
     }
     else if (this.groupBox1.Text == "Usuwanie konta")
     {
         LoggedUserUtility.deleteAccount(this, textBox2.Text);
     }
 }