0
Can't we make log in and registration form here?
Seems I can't connect my log in form to registration.
3 Respuestas
+ 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.
+ 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
0
Just using localStorage is not enough?