diff options
Diffstat (limited to 'UI/am-edit-template.html')
-rw-r--r-- | UI/am-edit-template.html | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/UI/am-edit-template.html b/UI/am-edit-template.html new file mode 100644 index 00000000..8d596098 --- /dev/null +++ b/UI/am-edit-template.html @@ -0,0 +1,22 @@ +<?lsmb INCLUDE 'ui-header.html' ?> +<?lsmb PROCESS elements.html ?> +<body> +<form method="post" action="<?lsmb form.script ?>"> + <?lsmb PROCESS textarea element_data={ + name => 'body', + rows => 25, + cols => 70, + text => form.body, + } ?> +<br /> +<?lsmb FOREACH hidden IN hiddens.keys; + PROCESS input element_data={ + type => 'hidden', + name => hidden, + value => hiddens.item(hidden) + }; END ?> +<?lsmb FOREACH button IN buttons; PROCESS button element_data=button; END ?> +</form> +</body> +</html> + |