+ 6
How do i make that someone else can use their log in details to advance to my website. I mustn't know it... Coding
2 Answers
+ 6
you will need a backend to store information.PHP or SQL are good backends
+ 2
check filtered and validated user input against a database of verified credentials. Store the result of the check, in session variables.
Allow page loading if session variable meets the requirements, otherwise redirect to login page.