Login and Register System using C# for Windows Forms
Technologies | How to use | License
This project was built using the following technologies and features:
- Clone the repository.
- Open the project from Visual Studio 2022.
- Rename the file from
APP_config.xmltoapp.configand in the below code section type your database credentials.
<appSettings>
<add key="MyConnection" value="Server=localhost;Port=5432;Database=yourDataBase;User Id=postgres;Password=yourPassword;" />
</appSettings>- Database structure.
For this application, we are using A local PostgreSQL Database.
Table name : csharp_user
create TABLE IF NOT EXISTS csharp_user(
id Serial ,
username VARCHAR NOT NULL,
password VARCHAR NOT NULL,
PRIMARY KEY (id)
)INSERT into csharp_user(username,password) values('admin', 'admin') This project was built under MIT. See the file LICENSE for more details.

