Exemple #1
0
        private void btnRegister_Click(object sender, EventArgs e)
        {
            if (!validate())
            {
                MSG.error(null, null);
                return;
            }

            MSG.success(null, null);

            Account acc = new Account();

            acc.username = txtUsername.Text;
            acc.password = txtPassword.Text;

            DataModel.accMdl.insert(acc);

            login.autofill(acc);
            Hide();
        }