Hi friends, i am new to creating website in html but i dont know how to write the code for creating an User Account in html I know how to write the front end page like following
Enter User Name: Enter an Email Id: registerd->button unregistered->button
when ever i click on unregitered button it has to create the account. when ever i click on registered it has to entered in to chat room how to do this i browsed the above things from google its giving the code in ohp,asp .net but i am not aware of above
That's not something HTML can help you with. If you want to do this with Java, you'd use servlets and JSPs, and you'd need a database that stores the account details. Is that what you want to do?
ThanQ for the reply can you tell me in detail how to do that I know little bit java and jsp how to write the code for that can you explain me in detail
Creating a user registration and account mechanism is a big task that can't be explained in a forum like this. Things to think about would be:
- What information do you need about the user? You will need web pages that collect that information, and database tables and fields to store it.
- How will you keep track of a user that has logged in - do you need server sessions, can you use cookies or do want or need to use URL rewriting?
- How will you handle if the user has forgotten his user name or password? Can you require the user to have a valid email address (and check it during the account creation process)?