private void btnRegister_Click(object sender, RoutedEventArgs e)
        {
            if (txtEmail.Text.Length == 0)
            {
                MessageBox.Show("Enter an Email!");
                txtEmail.Focus();
            }
            else if (!Regex.IsMatch(txtEmail.Text, @"^[a-zA-Z][\w\.-]*[a-zA-Z0-9]@[a-zA-Z0-9][\w\.-]*[a-zA-Z0-9]\.[a-zA-Z][a-zA-Z\.]*[a-zA-Z]$"))
            {
                MessageBox.Show("Enter Valid Email!");
                txtEmail.Select(0, txtEmail.Text.Length);
                txtEmail.Focus();
            }
            else if (psdPassword.Password.Length == 0)
            {
                MessageBox.Show("Enter an Password!");
                psdPassword.Focus();
            }
            else if (Register_(txtEmail.Text, psdPassword.Password))
            {
                MessageBox.Show("Đăng kí thành công!", "Thông Báo", MessageBoxButton.OK, MessageBoxImage.Information);

                signIn = new SignIn();
                signIn.ShowDialog();
            }
            else
            {
                MessageBox.Show("Đã tồn tại email này. Vui lòng nhập lại!", "Thông Báo", MessageBoxButton.OK, MessageBoxImage.Warning);
            }
        }
 private void btnSignIn_Click(object sender, RoutedEventArgs e)
 {
     if (Login(txtEmail.Text, psdPassword.Password))
     {
         this.Close();
         PassbookList passBookList = new PassbookList();
         passBookList.Show();
     }
     else
     {
         signIn.ShowDialog();
     }
 }
        private void btnRegister_Click(object sender, RoutedEventArgs e)
        {
            if (Register_(txtEmail.Text, psdPassword.Password))
            {
                MessageBox.Show("Đăng kí thành công!", "Thông Báo", MessageBoxButton.OK, MessageBoxImage.Information);

                signIn = new SignIn();
                signIn.ShowDialog();
            }
            else
            {
                MessageBox.Show("Đã tồn tại emaial này. Vui lòng nhập lại!", "Thông Báo", MessageBoxButton.OK, MessageBoxImage.Warning);
            }
        }
        private void btnSignIn_Click(object sender, RoutedEventArgs e)
        {
            SignIn signInView = new SignIn();

            signInView.ShowDialog();
        }