Index: docs/topics/forms/index.txt
===================================================================
--- docs/topics/forms/index.txt	(wersja 9032)
+++ docs/topics/forms/index.txt	(kopia robocza)
@@ -168,7 +168,7 @@
 
     <form action="/contact/" method="POST">
     {{ form.as_p }}
-    <input type="submit" value="Submit">
+    <input type="submit" value="Submit" />
     </form>
 
 The form only outputs its own fields; it is up to you to provide the surrounding
@@ -186,7 +186,7 @@
        <input type="text" name="sender" id="id_sender" /></p>
    <p><label for="id_cc_myself">Cc myself:</label>
        <input type="checkbox" name="cc_myself" id="id_cc_myself" /></p>
-   <input type="submit" value="Submit">
+   <input type="submit" value="Submit" />
    </form>
    
 Note that each form field has an ID attribute set to ``id_<field-name>``, which
@@ -226,7 +226,7 @@
             <label for="id_cc_myself">CC yourself?</label>
             {{ form.cc_myself }}
         </div>
-        <p><input type="submit" value="Send message"></p>
+        <p><input type="submit" value="Send message" /></p>
     </form>
 
 Each named form-field can be output to the template using
@@ -264,7 +264,7 @@
                 {{ field.label_tag }}: {{ field }}
             </div>
         {% endfor %}
-        <p><input type="submit" value="Send message"></p>
+        <p><input type="submit" value="Send message" /></p>
     </form>
 
 Within this loop, ``{{ field }}`` is an instance of :class:`BoundField`.
