+ 2
How do i create login page using html
8 Answers
+ 3
PHP (server-side language):
https://www.sololearn.com/Course/PHP/
SQL (database query language):
https://www.sololearn.com/Course/SQL/
JavaScript (client-side language):
https://www.sololearn.com/Course/JavaScript/
jQuery (Javascript library):
https://www.sololearn.com/Course/jQuery/
^Take a look at the above resources and learn them.
You'll use PHP/SQL in order to interact with a database on your server, which is where you'll store/retrieve your user accounts from. You'll use Javascript/jQuery to make your login system interactive for the user and also so you can submit data to your PHP files to handle server-side stuff with accounts.
Best of luck to you!
+ 2
As Maykel mentioned, that's the HTML part you'll use to embed the inputs, but it has no functionality that makes it a login page and it won't do much beyond what you see on the surface. The other stuff I mentioned is how you'll turn the HTML code into something that can be used toward the functionality of a login system. It's not something that HTML can natively do by itself.
+ 2
you should learn html well and study the following codes well
https://code.sololearn.com/Wp7H6KxtzkhS/?ref=app
https://code.sololearn.com/Wu6y3xHPG1cA/?ref=app
https://code.sololearn.com/WbX8asymItdc/?ref=app
+ 1
This is a very Basic example https://code.sololearn.com/WgEtqzi074Ya/?ref=app
+ 1
thanks guys
0
You can use <input> tags to create a <form> that contains a text input and a password input and a submit button. But That's only the front end side
0
if your doing php login in php dont forget about htmlspecialchars()
thats probably the most importand function for security
and use for a login a readonly sql user otherwise they could probaly steal all your userdata or do a DROP DATABASE *;
0
Please guys how can I create a login page for my customers before entering the main page (language -HTML)