- changed from input type="button" to type="submit"

- changed attribute names to html-conform ones (width -> size, with -> cols, height -> rows)
This commit is contained in:
Robert Gaggl 2003-08-02 10:39:07 +00:00
parent 1da86f939d
commit 3e01e99b25

View file

@ -1,8 +1,8 @@
<br />
<form method="post" action="<% response.action %>">
<p><span class="small">Title:<br /></span>
<% comment.content part="title" as="editor" width="25" style="formTitle" %></p>
<% comment.content part="title" as="editor" size="25" class="formTitle" %></p>
<p><span class="small">Text:</span><br />
<% comment.content part="text" as="editor" width="31" height="10" style="formText" %></p>
<p><% input type="button" name="save" value="Save" %>&nbsp;<% input type="button" name="cancel" value="Cancel" %></p>
<% comment.content part="text" as="editor" cols="31" rows="10" class="formText" %></p>
<p><% input type="submit" name="save" value="Save" %>&nbsp;<% input type="submit" name="cancel" value="Cancel" %></p>
</form>