summaryrefslogtreecommitdiff
path: root/UI/form-confirmation.html
diff options
context:
space:
mode:
authortetragon <tetragon@4979c152-3d1c-0410-bac9-87ea11338e46>2007-10-15 22:14:50 +0000
committertetragon <tetragon@4979c152-3d1c-0410-bac9-87ea11338e46>2007-10-15 22:14:50 +0000
commit21367a6c50d7a0f56c4e4a71a69f3e68b02edbb6 (patch)
treefaecfba4a4bb3e603e556a23db0f850bd67fb09b /UI/form-confirmation.html
parentab22492596ec010ec4e4d5a282fd5c14eac61638 (diff)
Add confirmation template
Rename yes in gl.pl git-svn-id: https://ledger-smb.svn.sourceforge.net/svnroot/ledger-smb/trunk@1763 4979c152-3d1c-0410-bac9-87ea11338e46
Diffstat (limited to 'UI/form-confirmation.html')
-rw-r--r--UI/form-confirmation.html16
1 files changed, 16 insertions, 0 deletions
diff --git a/UI/form-confirmation.html b/UI/form-confirmation.html
new file mode 100644
index 00000000..27256840
--- /dev/null
+++ b/UI/form-confirmation.html
@@ -0,0 +1,16 @@
+<?lsmb INCLUDE 'ui-header.html' ?>
+<?lsmb PROCESS elements.html ?>
+<body>
+<form method="post" action="<?lsmb form.script ?>">
+<h2 class="confirm"><?lsmb form.title ?></h2>
+<h4><?lsmb query ?></h4>
+<?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>