Can't we make log in and registration form here? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Can't we make log in and registration form here?

Seems I can't connect my log in form to registration.

24th Oct 2020, 4:48 AM
SkyFreak
SkyFreak - avatar
3 Answers
+ 2
Ok let's assume that you make an entire login page or even a sign-up registration form. So, using HTML you took user input. Now what? You must store this user information. For that you need to create a database and link it to your form. But HTML can't do this. So, to create a database to store this user information, you must use a different language. An example for such a language is SQL. So you can create an entire form with HTML but that will be of no use since you can't store this user information.
24th Oct 2020, 5:18 AM
Vatsal Sharma
Vatsal Sharma - avatar
+ 5
With only Html u can't. It requires SQL for managing databases. Check this similar thread: https://www.sololearn.com/Discuss/447121/?ref=app
24th Oct 2020, 4:57 AM
Alphin K Sajan
Alphin K Sajan - avatar
0
Just using localStorage is not enough?
24th Oct 2020, 5:40 AM
SkyFreak
SkyFreak - avatar