summaryrefslogtreecommitdiffstatshomepage
path: root/data/templates/minimal/tagrename.tpl.php
blob: 8a310881456e6891e67e76ff262cf3c126ea8cee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<?php
$this->includeTemplate($GLOBALS['top_include']);
?>
<script type="text/javascript">
window.onload = function() {
    document.getElementById("new").focus();
}
</script>
<div class="container-full">
	<div class="row">
		<div class="col-12 col-xs-12 col-sm-12 col-lg-12">
			<form action="<?php echo $formaction; ?>" method="post">
			<table>
			<tr>
					<th align="left"><?php echo T_('Old'); ?></th>
					<td><input class="form-control" type="text" name="old" id="old" value="<?php echo $old; ?>" /></td>
					<td> <?php echo T_('Required'); ?></td>
			</tr>
			<tr>
					<th align="left"><?php echo T_('New'); ?></th>
					<td><input class="form-control" type="text" name="new" id="new" value="" /></td>
					<td> <?php echo T_('Required'); ?></td>
			</tr>
			<tr>
					<td></td>
					<td>
					<input class="btn btn-default" type="submit" name="confirm" value="<?php echo T_('Rename'); ?>" />
					<input class="btn btn-default" type="submit" name="cancel" value="<?php echo T_('Cancel'); ?>" />
					</td>
					<td></td>
			</tr>

			</table>

			<?php if (isset($referrer)): ?>
			<div><input type="hidden" name="referrer" value="<?php echo $referrer; ?>" /></div>
			<?php endif; ?>

			</form>
		</div>
	</div>
</div>

<?php
$this->includeTemplate($GLOBALS['bottom_include']); 
?>