Notes management program using c++ on console. It has features like user authentication, id and password encryption, decryption, user dashboard and custom notes management.
Its really very simple to run the code. Clone the repository on your folder, If you are using visual studio code then simply run main.cpp file then the program will run without any problem.
- First run the code and you can choose option to either login or register a new account
- Now you can register a new account if you are first time using the program, it will show successful message when account register is completed
- Now a new file will be automatically created after account registration is successful that will act as a database which holds the encrypted value of the user registration and another text file will also be created based on users username that will hold the note of user.
- Now you can login to your account, If your account login details doesn't match then it will show you this alert and program will be closed
- After running program again you can enter the correct login detail of your account and you will get access to the dashboad.
- Here you can create a new notes, view your last note or logout from your account. If you click on notes then it will ask you to enter details on your notes like this -
- Once it shows successful message then you can see the written notes on the created file like this -
- Now next time when you login to your account then you can view your previous note or overwrite it will your newer notes.
This was my simple and interesting program using c++, We have encryption and decryption algorithm you can also modify the code according to your requirements.