Hi Team,
I want the html code with which i can create a log in page, and when user id and password is put it should open a small page which is basically created in html.
I have used the below html tag to create an user nad password column
<html>
<body style="background-color:#5A6673">
<h1 style="text-align:center"><b>My Site</b></h1>
<frameset cols="40%,60%">
<form action="">
Username: <input type="text" name="user" /><br />
Password: <input type="password" name="password" />
<input type="submit" value="Submit" />
</form>
</body>
</html>
Kindly do advice..