I have done this ... well sort of (for access to an administrative section).... in my application by using a txt file to store the password (I had no login names) and reading the txt file then checking the input password against the data from the txt file.
The only thing is one has to concider how computer savy thier users will be. You will probably want to do some simple encrypting for the login and password before you save it to the txt file. Alternatively, you could use a datalog to save the information, which sort of encrypts it for you (saves in proprietary format, not readable using a text editor). That my 2 cents.
All in all, not really all that difficult.
Greycat