+ 2
How to get the user information on a website
Suppose i created a website and has login form containing username and password so how can i acess the password for it whether the user entered the password correct or wrong and i dont know the password is correct
2 Answers
+ 2
Finish the course you started with Javascript; you can use it to access the fields for validation. However, you'll want to learn a server-side language (PHP, NodeJS, ASP, etc...) and also a database query language (SQL, NoSQL, etc..). Their account information will be stored in the database after account creation and you'll use front-end/back-end/query language to validate the data between what they entered and what's in the database to open their login session if successful login.
+ 2
Thanksđđ