0
Please how am going to allow my users to login in to my site using HTML
6 ответов
+ 2
Please note that HTML is not a programming language. So all u can do with HTML is to make a login form. In order to create authentication , u need to create a database with MySQL for users and handle the registration and login process with a backend programming language like PHP.
+ 1
Anigbogu Nonso hi,
You can use a "pattern" attribute for a first level check and learn a little basics about regexp :
https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/pattern
https://www.tutorialrepublic.com/javascript-tutorial/javascript-regular-expressions.php
Then for more consistent and secure ways, it will happen in the backend as said by Mohammad Kakuei Nezhad .
+ 1
Thank you I appreciate
+ 1
EmmanuelZ. Thank you for your help
0
Please tell me more a little bit confused
0
As i said HTML and CSS are not programming languages.It means that the view and template of the login form is created with HTML and CSS. But in order to enable users to actually sign-in and sign-up , you need to learn about MySQL and PHP , which are used for handling back-end requests.
Good luck