private async void PW_PasswordChanged(object sender, RoutedEventArgs e) { User user = await Apis.Login(loginViewModel.ID, PW.Password); if (user.Point != "-1") { if (loginViewModel.AutoLogin) { FileControl.Session = await Apis.MakeSession(loginViewModel.ID, PW.Password);; } LoginViewModel.LoginUser = user; GameManager.logixExit = true; Close(); } }
async Task dangNhap() { var user = new app_codes.User(); user.identifier = txtId.Text; user.password = txtPassword.Text; string dn = await apis.Login(user); if (dn == null) { DialogResult dialog = MessageBox.Show("Bạn đã nhập sai tài khoản", "Lỗi đăng nhập!!!", MessageBoxButtons.OK); if (dialog == DialogResult.OK) { this.Close(); } } else { MainForm mainForm = new MainForm(this, apis); mainForm.Show(); this.Hide(); } }