Mobile app version of vmapp.org
Login or Join
Fox8124981

: Website with sign up and sign in system I'm going to start a website where I need a Signup and Sign in system. And when the user is signed in the user will get access to stuff that only

@Fox8124981

Posted in: #Authentication #Html

I'm going to start a website where I need a Signup and Sign in system. And when the user is signed in the user will get access to stuff that only members can see an access. Would HTML be the best way to go then?

10.03% popularity Vote Up Vote Down


Login to follow query

More posts by @Fox8124981

3 Comments

Sorted by latest first Latest Oldest Best

 

@Shakeerah822

The previous answers are correct, but assume you want to build the server-side stuff yourself.

If you're interested just in "setting things up" you may want to look into Web Hosting companies that offer a "Content Management System", which probably suits your needs. A decent list of systems can be found here:
en.wikipedia.org/wiki/List_of_content_management_systems
One of the more popular systems is Drupal I believe, for which Stack Exchange has its own Q&A site:
drupal.stackexchange.com/

10% popularity Vote Up Vote Down


 

@Sue5673885

As John said before me, HTML isn't the right way to do that...

but... just for be more clear...

there's the "protection folder via .htaccess".

I think that each website administration panel let you to create "protected folders", those folders accept a list of user-password combination that you have to build up by your side.

of course, this is NOT automatic.

For automation you have to learn/use Server-Side languages as suggested:
Php, Asp, Jsp... choose the one that catch your attention...

10% popularity Vote Up Vote Down


 

@Kevin317

HTML is not meant for this. HTML just displays content in a web browser. You will need a server side programming language like PHP to do this. The PHP will take the form submission (which is in HTML) and do the work that checks if the users is valid, and if they are, log them in.

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme