bigger
[mir.git] / templates / admin / fileedit.template
1 <html>
2 <head>
3         <title>${config["Mir.Name"]} | ${lang("fileedit")}</title>
4   <link rel="stylesheet" type="text/css" href="${config.docRoot}/style/admin.css">
5 </head>
6
7 <body marginwidth="0" marginheight="0" topmargin="0" leftmargin="0">
8
9 <include "templates/admin/head.template">
10
11 <br>
12 <b>${lang("fileedit")} :</b> ${data.filename}
13
14 <br>
15
16 <form action="${config.actionRoot}" method="post">
17
18         <input type="hidden" name="module" value="FileEdit">
19         <input type="hidden" name="filename" value="${data.filename}">
20         <input type="hidden" name="do" value="update">
21
22
23          <textarea cols="80" rows="40" name="text" wrap=virtual>${data.text}</textarea>
24
25 <br>
26
27
28
29         <input type="submit" name="save" value="${lang("save")}"> &nbsp;
30         <input type="reset" value="${lang("reset")}">
31
32
33 </form>
34 <br>
35 <br>
36
37 ${lang("preview")}
38
39 <hr size="2" width="90%" noshade>
40
41 ${data.text}
42
43 <hr size="2" width="90%" noshade>
44 <br>
45
46 <include "templates/admin/foot.template">
47
48 </body>
49 </html>
50
51