patipark / csharp_signin_signup_system

Login and Register System using C# for Windows Forms

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Login-and-Register-System

Login and Register System using C# for Windows Forms

Technologies   |    How to use   |    License

License GitHub last commit GitHub top language Windows Forms

🧪 technologies

This project was built using the following technologies and features:

💡 how to use

  • Clone the repository.
  • Open the project from Visual Studio 2022.
  • Rename the file from APP_config.xml to app.config and 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') 

system

📄 License

This project was built under MIT. See the file LICENSE for more details.


About

Login and Register System using C# for Windows Forms


Languages

Language:C# 100.0%