move button to cont-utils

cvs
Chris Double 2004-08-01 22:25:40 +00:00
parent 109559a1ae
commit a91cda2e8f
2 changed files with 5 additions and 5 deletions

View File

@ -62,3 +62,7 @@ USE: stack
<table> [
<tr valign= "top" tr> [ [ <td> [ call ] </td> ] each ] </tr>
] </table> ;
: button ( label -- )
#! Output an HTML submit button with the given label.
<input type= "submit" value= input/> ;

View File

@ -70,10 +70,6 @@ USE: todo
#! specified name.
<input type= "password" size= "20" name= input/> ;
: button ( label -- )
#! Output an HTML submit button with the given label.
<input type= "submit" value= input/> ;
: form ( action quot -- )
#! Call quot with any output appearing inside an HTML form.
#! The form is a POST form where the action is as specified.