You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
690 B
22 lines
690 B
<h3 class="drag-handle"><?php echo $title ?></h3>
|
|
<b><a class="close" href="#"><i class="icon-remove-circle"></i></a></b>
|
|
<div class="clear"></div>
|
|
<hr/>
|
|
<form method="post" action="#<?php echo $path; ?>">
|
|
<div class="inset">
|
|
<?php $form->render(); ?>
|
|
</div>
|
|
<hr>
|
|
<p class="full-width">
|
|
<span class="buttons pull-left">
|
|
<input type="reset" value="<?php echo __('Reset'); ?>" />
|
|
<input type="button" name="cancel" class="close"
|
|
value="<?php echo __('Cancel'); ?>" />
|
|
</span>
|
|
<span class="buttons pull-right">
|
|
<input type="submit" value="<?php
|
|
echo $verb ?: __('Update'); ?>" />
|
|
</span>
|
|
</p>
|
|
<div class="clear"></div>
|
|
</form>
|