This document was successfully checked as XHTML 1.0 Strict!

Result: Passed
:
Modified:(undefined)
Server:Apache
Size:(undefined)
Content-Type:text/html
: utf-8
: XHTML 1.0 Strict
Root Element: html
Root Namespace: http://www.w3.org/1999/xhtml
Options

Help on the options is available.

Congratulations

The document located at <http://aulas.esec-acf.pt/login/forgot_password.php> was successfully checked as XHTML 1.0 Strict. This means that the resource in question identified itself as "XHTML 1.0 Strict" and that we successfully performed a formal validation of it. The parser implementations we used for this check are based on OpenSP (SGML/XML) and libxml2 (XML).

"valid" Icon(s) on your Web page

To show your readers that you have taken the care to create an interoperable Web page, you may display this icon on any page that validates. Here is the HTML you could use to add this icon to your Web page:

Valid XHTML 1.0 Strict
  <p>
    <a href="http://validator.w3.org/check?uri=referer"><img
      src="http://www.w3.org/Icons/valid-xhtml10" alt="Valid XHTML 1.0 Strict" height="31" width="88" /></a>
  </p>
  

A full list of icons, with links to alternate formats and colors, is available: If you like, you can download a copy of the icons to keep in your local web directory, and change the HTML fragment above to reference your local image rather than the one on this server.

Linking to this result

If you would like to create a link to this page (i.e., this validation result) to make it easier to revalidate this page in the future or to allow others to validate your page, the URI is <http://validator.w3.org/check?uri=http%3A%2F%2Faulas.esec-acf.pt%2Flogin%2Fforgot_password.php;ss=1;verbose=1> (or you can just add the current page to your bookmarks or hotlist).

Validating CSS Style Sheets

If you use CSS in your document, you can check it using the W3C CSS Validation Service.

↑ Top

Source Listing

Below is the source input I used for this validation:

  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml" dir="ltr" lang="pt" xml:lang="pt">
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  5. <link rel="stylesheet" type="text/css" href="http://aulas.esec-acf.pt/theme/standard/styles.php" />
  6. <link rel="stylesheet" type="text/css" href="http://aulas.esec-acf.pt/theme/formal_white/styles.php" />
  7. <!--[if IE 7]>
  8. <link rel="stylesheet" type="text/css" href="http://aulas.esec-acf.pt/theme/standard/styles_ie7.css" />
  9. <![endif]-->
  10. <!--[if IE 6]>
  11. <link rel="stylesheet" type="text/css" href="http://aulas.esec-acf.pt/theme/standard/styles_ie6.css" />
  12. <![endif]-->
  13. <meta name="keywords" content="moodle, Senha esquecida " />
  14. <title>Senha esquecida</title>
  15. <link rel="shortcut icon" href="http://aulas.esec-acf.pt/theme/formal_white/favicon.ico" />
  16. <!--<style type="text/css">/*<![CDATA[*/ body{behavior:url(http://aulas.esec-acf.pt/lib/csshover.htc);} /*]]>*/</style>-->
  17. <script type="text/javascript" src="http://aulas.esec-acf.pt/lib/javascript-static.js"></script>
  18. <script type="text/javascript" src="http://aulas.esec-acf.pt/lib/javascript-mod.php"></script>
  19. <script type="text/javascript" src="http://aulas.esec-acf.pt/lib/overlib/overlib.js"></script>
  20. <script type="text/javascript" src="http://aulas.esec-acf.pt/lib/overlib/overlib_cssstyle.js"></script>
  21. <script type="text/javascript" src="http://aulas.esec-acf.pt/lib/cookies.js"></script>
  22. <script type="text/javascript" src="http://aulas.esec-acf.pt/lib/ufo.js"></script>
  23. <script type="text/javascript" src="http://aulas.esec-acf.pt/lib/dropdown.js"></script>
  24. <script type="text/javascript" defer="defer">
  25. //<![CDATA[
  26. setTimeout('fix_column_widths()', 20);
  27. //]]>
  28. </script>
  29. <script type="text/javascript">
  30. //<![CDATA[
  31. function openpopup(url,name,options,fullscreen) {
  32. fullurl = "http://aulas.esec-acf.pt" + url;
  33. windowobj = window.open(fullurl,name,options);
  34. if (fullscreen) {
  35. windowobj.moveTo(0,0);
  36. windowobj.resizeTo(screen.availWidth,screen.availHeight);
  37. }
  38. windowobj.focus();
  39. return false;
  40. }
  41. function uncheckall() {
  42. void(d=document);
  43. void(el=d.getElementsByTagName('INPUT'));
  44. for(i=0;i<el.length;i++) {
  45. void(el[i].checked=0);
  46. }
  47. }
  48. function checkall() {
  49. void(d=document);
  50. void(el=d.getElementsByTagName('INPUT'));
  51. for(i=0;i<el.length;i++) {
  52. void(el[i].checked=1);
  53. }
  54. }
  55. function inserttext(text) {
  56. text = ' ' + text + ' ';
  57. if ( opener.document.forms['theform'].message.createTextRange && opener.document.forms['theform'].message.caretPos) {
  58. var caretPos = opener.document.forms['theform'].message.caretPos;
  59. caretPos.text = caretPos.text.charAt(caretPos.text.length - 1) == ' ' ? text + ' ' : text;
  60. } else {
  61. opener.document.forms['theform'].message.value += text;
  62. }
  63. opener.document.forms['theform'].message.focus();
  64. }
  65. addonload(function() { if(el = document.getElementById('id_email')) el.focus(); });
  66. function getElementsByClassName(oElm, strTagName, oClassNames){
  67. var arrElements = (strTagName == "*" && oElm.all)? oElm.all : oElm.getElementsByTagName(strTagName);
  68. var arrReturnElements = new Array();
  69. var arrRegExpClassNames = new Array();
  70. if(typeof oClassNames == "object"){
  71. for(var i=0; i<oClassNames.length; i++){
  72. arrRegExpClassNames.push(new RegExp("(^|\\s)" + oClassNames[i].replace(/\-/g, "\\-") + "(\\s|$)"));
  73. }
  74. }
  75. else{
  76. arrRegExpClassNames.push(new RegExp("(^|\\s)" + oClassNames.replace(/\-/g, "\\-") + "(\\s|$)"));
  77. }
  78. var oElement;
  79. var bMatchesAll;
  80. for(var j=0; j<arrElements.length; j++){
  81. oElement = arrElements[j];
  82. bMatchesAll = true;
  83. for(var k=0; k<arrRegExpClassNames.length; k++){
  84. if(!arrRegExpClassNames[k].test(oElement.className)){
  85. bMatchesAll = false;
  86. break;
  87. }
  88. }
  89. if(bMatchesAll){
  90. arrReturnElements.push(oElement);
  91. }
  92. }
  93. return (arrReturnElements)
  94. }
  95. //]]>
  96. </script>
  97. </head>
  98. <body class="login course-1 notloggedin dir-ltr lang-pt_utf8" id="login-forgot_password">
  99. <div id="page">
  100. <div id="header" class=" clearfix"> <h1 class="headermain"><img alt='Moodle' src='http://aulas.esec-acf.pt/theme/formal_white/logo_small.jpg' /></h1>
  101. <div class="headermenu"><div class="logininfo">Utilizador não identificado. (<a href="http://aulas.esec-acf.pt/login/index.php">Entrar</a>)</div></div>
  102. </div> <div class="navbar clearfix">
  103. <div class="breadcrumb"><h2 class="accesshide " >Encontra-se em</h2> <ul>
  104. <li class="first"><a onclick="this.target='_top'" href="http://aulas.esec-acf.pt/">AGEBUCELAS</a></li><li class="first"> <span class="accesshide " >/&nbsp;</span><span class="arrow sep">&#x25BA;</span> <a onclick="this.target='_top'" href="http://aulas.esec-acf.pt/login/index.php">Entrar</a></li><li class="first"> <span class="accesshide " >/&nbsp;</span><span class="arrow sep">&#x25BA;</span> Senha esquecida</li></ul></div>
  105. <div class="navbutton">&nbsp;</div>
  106. </div>
  107. <!-- END OF HEADER -->
  108. <div id="content"><div class="generalbox boxwidthnormal boxaligncenter box">Primeiro teremos que identificar os seus dados na base de dados. Por favor diga-nos <strong>algum dos dois dados seguintes</strong> no campo respectivo: o seu nome de utilizador no sítio Moodle, ou o endereço de correio electrónico com que está registado. Não é preciso indicar as duas coisas.</div>
  109. <form action="http://aulas.esec-acf.pt/login/forgot_password.php" method="post" id="mform1" class="mform">
  110. <div style="display: none;"><input name="MAX_FILE_SIZE" type="hidden" value="104857600" />
  111. <input name="sesskey" type="hidden" value="A1JNBDkmT2" />
  112. <input name="_qf__login_forgot_password_form" type="hidden" value="1" />
  113. </div>
  114. <fieldset class="clearfix" >
  115. <legend class="ftoggler">Senha esquecida</legend>
  116. <div class="advancedbutton"></div><div class="fcontainer clearfix">
  117. <div class="fitem"><div class="fitemtitle"><label for="id_username">Nome de utilizador </label></div><div class="felement ftext"><input name="username" type="text" id="id_username" /></div></div>
  118. <div class="fitem"><div class="fitemtitle"><label for="id_email">Endereço de correio electrónico </label></div><div class="felement ftext"><input name="email" type="text" id="id_email" /></div></div>
  119. </div></fieldset>
  120. <fieldset class="hidden"><div>
  121. <div class="fitem"><div class="fitemtitle"><div class="fgrouplabel"><label> </label></div></div><fieldset class="felement fgroup"><input name="submitbutton" value="OK" type="submit" id="id_submitbutton" /> <input name="cancel" value="Cancelar" type="submit" onclick="skipClientValidation = true; return true;" id="id_cancel" /></fieldset></div>
  122. </div></fieldset>
  123. </form>
  124. <script type="text/javascript">
  125. //<![CDATA[
  126. var mform1items = Array();
  127. lockoptionsallsetup('mform1');
  128. //]]>
  129. </script>
  130. </div><div id="footer"><p class="helplink"></p><hr /><div class="logininfo">Utilizador não identificado. (<a href="http://aulas.esec-acf.pt/login/index.php">Entrar</a>)</div><div class="homelink"><a href="http://aulas.esec-acf.pt/">Página principal</a></div> <div class="validators"><ul>
  131. <li><a href="http://validator.w3.org/check?verbose=1&amp;ss=1&amp;uri=http%3A%2F%2Faulas.esec-acf.pt%2Flogin%2Fforgot_password.php">Validate HTML</a></li>
  132. <li><a href="http://www.contentquality.com/mynewtester/cynthia.exe?rptmode=-1&amp;url1=http%3A%2F%2Faulas.esec-acf.pt%2Flogin%2Fforgot_password.php">Section 508 Check</a></li>
  133. <li><a href="http://www.contentquality.com/mynewtester/cynthia.exe?rptmode=0&amp;warnp2n3e=1&amp;url1=http%3A%2F%2Faulas.esec-acf.pt%2Flogin%2Fforgot_password.php">WCAG 1 (2,3) Check</a></li>
  134. </ul></div>
  135. </div>
  136. </div>
  137. </body>
  138. </html>

↑ Top