Can you see this page?

Fiveohhh

Diamond Member
Jan 18, 2002
3,776
0
0
wondering if you can see the form on this page works fine in opera for me, but not ie. when I vew the source in IE looks like it whould work to me..
Text
 

blackdogdeek

Lifer
Mar 14, 2003
14,453
10
81
username label and text field
password label and text field
"Login" submit button

looks fine in firefox
 

SunnyD

Belgian Waffler
Jan 2, 2001
32,675
146
106
www.neftastic.com
look at your source...

<html>
<head>
<title>Login</head>
</HEAD>
<body>
<form action="auth.php" method="post">
User Name: <input type="text" name="name">

Password: <input type="text" name="password">

<input type="submit" value="Login">
</form>
</body>
</html>

change the first </head> to </title>

Just goes to show you that the other browsers don't adhere to well-formed HTML rules.
 

Fiveohhh

Diamond Member
Jan 18, 2002
3,776
0
0
Originally posted by: SunnyD
look at your source...

<html>
<head>
<title>Login</head>
</HEAD>
<body>
<form action="auth.php" method="post">
User Name: <input type="text" name="name">

Password: <input type="text" name="password">

<input type="submit" value="Login">
</form>
</body>
</html>

change the first </head> to </title>

Just goes to show you that the other browsers don't adhere to well-formed HTML rules.

oops can't believe I missed that
 

bsmithy

Senior member
Oct 24, 2003
458
0
0
Originally posted by: SunnyD
look at your source...

<html>
<head>
<title>Login</head>
</HEAD>
<body>
<form action="auth.php" method="post">
User Name: <input type="text" name="name">

Password: <input type="text" name="password">

<input type="submit" value="Login">
</form>
</body>
</html>

change the first </head> to </title>

Just goes to show you that the other browsers don't adhere to well-formed HTML rules.

well spotted
 

Savij

Diamond Member
Nov 12, 2001
4,233
0
71
Originally posted by: SunnyD
Originally posted by: Fiveohhh
wondering if you can see the form on this page works fine in opera for me, but not ie. when I vew the source in IE looks like it whould work to me..
Text

Works now - IE6 SP2.