Login
β
private void Login_Click() { // Login button click event handler
β bool response = Api.Login(username.Text, password.Text); // Edit message value on program settings to change the successful message box value!
if (response){
new Form2().Show();
this.Hide();
}
β
}
Last updated
Was this helpful?