Project

General

Profile

1
<!-- BEGIN main_block -->
2
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
4
<head>
5
<title>Rename Media</title>
6
<link href="{THEME_URL}/media.css" rel="stylesheet" type="text/css" />
7
</head>
8
<body>
9

    
10
<!-- BEGIN main_block -->
11

    
12
<style>
13
.hide {display:none;}
14
</style>
15

    
16
<form name="rename" action="rename2.php" method="post">
17
<input type="hidden" name="dir" value="{DIR}" />
18
<input type="hidden" name="old_name" value="{FILENAME}" />
19
<input type="hidden" name="id" value="{FILE_ID}" />
20

    
21
<table cellpadding="5" cellspacing="0" border="0" width="400" align="center">
22
<tr>
23
	<td align="center" colspan="2">{TEXT_RENAME} '{FILENAME}' {TEXT_TO}:</td>
24
</tr>
25
<tr>
26
	<td>
27
		<input type="text" name="name" style="width: 100%;" />
28
		<script type="text/javascript">
29
		document.rename.name.focus();
30
		</script>
31
	</td>
32
	<td width="50" class="{DISPlAY_EXTENSION}">
33
		<input type="text" name="extension" style="width: 50px;" value="{EXTENSION}" />
34
	</td>
35
</tr>
36
<tr>
37
	<td colspan="2">
38
		<input type="checkbox" name="overwrite" id="overwrite" value="yes" />
39
		<label for="overwrite">
40
		{TEXT_OVERWRITE_EXISTING} {TYPE}
41
		</label>
42
	</td>
43
</tr>
44
<tr>
45
	<td colspan="2">
46
		<input type="submit" name="submit" value="{TEXT_RENAME}" style="width: 49%;" />
47
		<input type="button" name="cancel" value="{TEXT_CANCEL}" style="width: 49%;" onclick="javascript: window.location = 'browse.php';" />
48
	</td>
49
</tr>
50
</table>
51

    
52
</form>
53

    
54
</td>
55
</tr>
56
</table>
57

    
58
</body>
59
</html>
60

    
61
<!-- END main_block -->
(16-16/32)