diff options
Diffstat (limited to 'templates/tag2tagadd.tpl.php')
-rw-r--r-- | templates/tag2tagadd.tpl.php | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/templates/tag2tagadd.tpl.php b/templates/tag2tagadd.tpl.php new file mode 100644 index 0000000..5b5ea58 --- /dev/null +++ b/templates/tag2tagadd.tpl.php @@ -0,0 +1,23 @@ +<?php +$this->includeTemplate($GLOBALS['top_include']); +?> + +<form action="<?= $formaction ?>" method="post"> +<input type="hidden" name="tag" value="<?php echo $tag ?>" /> +<p><?php echo T_('Create new link :')?></p> +<p><?php echo $tag ?> > <input type="text" name="newTag" /></p> +<!--p><?php echo T_('Are you sure?'); ?></p--> +<p> + <input type="submit" name="confirm" value="<?php echo T_('Create'); ?>" /> + <input type="submit" name="cancel" value="<?php echo T_('Cancel'); ?>" /> +</p> + +<?php if (isset($referrer)): ?> +<div><input type="hidden" name="referrer" value="<?php echo $referrer; ?>" /></div> +<?php endif; ?> + +</form> + +<?php +$this->includeTemplate($GLOBALS['bottom_include']); +?> |