> For the complete documentation index, see [llms.txt](https://phpfreakbd.gitbook.io/licensepoint-lp-documentation/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://phpfreakbd.gitbook.io/licensepoint-lp-documentation/dll-class-documentations/login.md).

# Login

```csharp
​
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();
   }

​
}
```
