XHTML 1.0 Transitional Help Needed

Christopher

Retired
Messages
14,659
Reaction score
8
Points
0
I'm getting this error and I can't figure out how I fix it.

erroror8.png


Below is the form.

HTML:
<form action="settings.php" method="post">
  <b><u>Edit Account Details</u></b><br />
  Username: <input type="text" value="chris" name="username" readonly="readonly" /><br />
  Password: <input type="password" name="password" disabled="disabled" /><br />

  <i>Due to a bug, password changing has been temporarily disabled.<br />
  Email: <input type="text" value="chris@fyepro.com" name="email" /><br /><br />
  <b><u>Edit SigChat Settings</u></b><br />
  <input type='radio' name='design' value='1' /><img src='./themes/sigchat1.png' alt='Windows XP Notepad' /><br /><br />
<input type="submit" value="Save" />
</form>

Thanks for any help!
 

nunoabc

New Member
Messages
151
Reaction score
0
Points
0
You forgot to close <i> tag...

HTML:
<form action="settings.php" method="post">
  <b><u>Edit Account Details</u></b><br />
  Username: <input type="text" value="chris" name="username" readonly="readonly" /><br />
  Password: <input type="password" name="password" disabled="disabled" /><br />

  <i>Due to a bug, password changing has been temporarily disabled.</i><br />
  Email: <input type="text" value="chris@fyepro.com" name="email" /><br /><br />
  <b><u>Edit SigChat Settings</u></b><br />
  <input type='radio' name='design' value='1' /><img src='./themes/sigchat1.png' alt='Windows XP Notepad' /><br /><br />
<input type="submit" value="Save" />
</form>
 

nunoabc

New Member
Messages
151
Reaction score
0
Points
0
Oh never mind. That happens a lot to me all the time. By the way, I'm glad I could help. ;)
 
Top