Kod
Line 40, Column 47: required attribute "action" not specified
<input type="submit" value="Zaloguj" /><form /></div> </div>
The attribute given above is required for an element that you've used, but you have omitted it. For instance, in most HTML and XHTML document types the "type" attribute is required on the "script" element and the "alt" attribute is required for the "img" element.
Typical values for type are type="text/css" for <style> and type="text/javascript" for <script>.
<input type="submit" value="Zaloguj" /><form /></div> </div>
The attribute given above is required for an element that you've used, but you have omitted it. For instance, in most HTML and XHTML document types the "type" attribute is required on the "script" element and the "alt" attribute is required for the "img" element.
Typical values for type are type="text/css" for <style> and type="text/javascript" for <script>.
Wiem, że czepia się o atrybut action ale nie bardzo wiem dlaczego:
formularz:
Kod
<div align="center"><form action="/cpadmin" method="post" />
<input type="hidden" name="send" value="1" />
Login:<br /><input type="text" name="login" /><br />
Hasło:<br /><input type="password" name="haslo" /><br />
<input type="submit" value="Zaloguj" /><form /></div>
<input type="hidden" name="send" value="1" />
Login:<br /><input type="text" name="login" /><br />
Hasło:<br /><input type="password" name="haslo" /><br />
<input type="submit" value="Zaloguj" /><form /></div>