private void btnLogin_Click(object sender, EventArgs e) { AccountDAO accountDAO = new AccountDAO(); var respone = accountDAO.Login(txbUser.Text, txbPassWord.Text); if (respone.StatusCode.Equals(System.Net.HttpStatusCode.OK)) { var token = respone.Data.access_token; Program.access_token = token; var getdetail_respone = accountDAO.GetDetail(); if (getdetail_respone.Data.isAdmin) { this.Hide(); fTableManager f = new fTableManager(getdetail_respone.Data.name); f.ShowDialog(); txbPassWord.Clear(); txbUser.Clear(); txbUser.Focus(); } else { MessageBox.Show("Tài khoản của bạn không đủ quyền hạn", "Lỗi", MessageBoxButtons.OK, MessageBoxIcon.Error); } } else { MessageBox.Show("Tên đăng nhận không tồn tại hoặc mật khẩu sai", "Lỗi", MessageBoxButtons.OK, MessageBoxIcon.Error); } }
private void btnLogin_Click(object sender, EventArgs e) { if (login(txbUser.Text, txbPassWord.Text)) { this.Hide(); Account account = AccountDAO.Instance.getAccount(txbUser.Text, txbPassWord.Text); fTableManager f = new fTableManager(account.UserName, account.DisplayName, account.PassWord, account.Type); f.ShowDialog(); txbPassWord.Clear(); txbUser.Clear(); txbUser.Focus(); this.Show(); } else { MessageBox.Show("Tên đăng nhận không tồn tại hoặc mật khẩu sai", "Lỗi", MessageBoxButtons.OK, MessageBoxIcon.Error); } }