+ 2
Can anyone tell me how to make multi user registratiom code in html?
i want to make a registration page in html where i can allow 3 user to select their role and according to that registeration list appeared .
4 Respuestas
+ 8
With html, that probably won't work without integrating the user names and maybe passwords etc. in the source code, which would make it very insecure. Also you'll at least need JavaScript to make a simple id check. But still, everyone could just look at the html/JavaScript code and see all login data.
For a minimum of security, you'll probably need to combine html with php, save passwords as hash values etc. What you're asking for are actually pretty advanced concepts...
+ 2
Thanks Anna.
+ 1
Thanks anthony stark.