- 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:
parent
1da86f939d
commit
3e01e99b25
1 changed files with 3 additions and 3 deletions
|
@ -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" %> <% 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" %> <% input type="submit" name="cancel" value="Cancel" %></p>
|
||||
</form>
|
||||
|
|
Loading…
Add table
Reference in a new issue