contains only admin templates which should not be changed by users
[mir.git] / templates / admin / confirm.template
1 <html>
2   <head>
3         <title>${config["Mir.Name"]} | ${lang("confirm.htmltitle")}</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_nonavi.template">
10 <table width="100%" border="0" align="center">
11   <tr class="darkgrey">
12     <td colspan="2"> 
13       <h2 align="center"><span class="litetitel">${lang("confirm.really_delete")}</span></h2>
14     </td>
15   </tr>
16   <tr> 
17     <td colspan="2">
18       <form method="post" action="${config.actionRoot}">
19         <div align="center">
20           <input type="hidden" name="module" value=${data.module}>
21           <input type="hidden" name="do" value="delete">
22           <input type="hidden" name="id" value="${data.id}">
23           <input type="hidden" name="where" value="${data.where}">
24           <input type="hidden" name="order" value="${data.order}">
25           <input type="hidden" name="offset" value="${data.offset}">
26           <input type="submit" name="cancel" value="${lang("cancel")}">
27           <input type="submit" name="confirm" value="${lang("delete")}">
28         </div>
29       </form>
30     </td>
31   </tr>
32 </table>
33 <include "templates/admin/foot.template">
34   </body>
35 </html>