Login form

D

danny

Is there a HTML code for a login form?

And if so how do you get it to check a database so it knows if the
user and pass entered is Authentic, and therefore direct it to the
login page?

Regards, Dan
 
P

PH

Is there a HTML code for a login form?
And if so how do you get it to check a database so it knows if the
user and pass entered is Authentic, and therefore direct it to the
login page?

Htmlcode:
<form method="POST" action="Myscript.asp">
<p>Username<input type="text" name="username" size="20"></p>
<p>Password<input type="password" name="password" size="20"></p>
<p><input type="submit" value="Send" name="Button"></p>
</form>

You need a serversidescript (eg. asp, aspx or php) to check the database
and redirect to a startpage.
 
D

danny

PH said:
Htmlcode:
<form method="POST" action="Myscript.asp">
<p>Username<input type="text" name="username" size="20"></p>
<p>Password<input type="password" name="password" size="20"></p>
<p><input type="submit" value="Send" name="Button"></p>
</form>

You need a serversidescript (eg. asp, aspx or php) to check the database
and redirect to a startpage.

Do you no a free online website maker that supports php?
 
J

Jeff Bowman

danny said:
Is there a HTML code for a login form?

And if so how do you get it to check a database so it knows if the
user and pass entered is Authentic, and therefore direct it to the
login page?

Hi Dan, ASP.NET 2.0 has a complete login server control that handles
everything for you.

You can download Visual Web Developer Express here:

http://msdn.microsoft.com/vstudio/express/vwd/
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
474,431
Messages
2,571,677
Members
48,796
Latest member
Greg L.

Latest Threads

Top