Database of users | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Database of users

How would | make a website that people can logon to. Something like a forum.

24th Nov 2017, 10:46 PM
Darian Gibson
Darian Gibson - avatar
2 Answers
+ 10
You can make a basic version using firebase. https://code.sololearn.com/WPA59AZ301Fl/?ref=app
25th Nov 2017, 3:28 AM
Krishna Teja Yeluripati
Krishna Teja Yeluripati - avatar
+ 1
first, you should build an HTML page with a form, where users can sign in by typing their credentials, user and pass. second you must attach an action to that form, a POST action, this is the most used, in order to send the data that the user entered to the server. third you must handle this request by building a back end mechanism that checks the credentials with the ones that are stored in a database. fourth, this back end mechanism must respond to the sign in request, positively or negatively, if the user exists or no. fifth in order to automate this procedure you must build the sign up mechanism which is similar to the above(instead o checking, the back end logs an entry to the database, the new user) so that you don't have to input new user credentials by pure SQL statements.
24th Nov 2017, 11:37 PM
Dmitrii
Dmitrii - avatar