1
0

page.rename.tmpl 1.2 KB

123456789101112131415161718192021222324252627282930313233
  1. <tmpl_include name="inc.head.tmpl">
  2. <body>
  3. <tmpl_include name="inc.titleBar.tmpl">
  4. <div id="rename">
  5. <tmpl_if name="is_start">
  6. <form method="POST" action="index.php?iid=rename" name="move_form">
  7. <p class="names">
  8. <label for="fileFromDis"><tmpl_var name="_REN_FILE"></label>
  9. <input disabled="true" type="text" name="fileFromDis" id="fileFromDis" value="<tmpl_var name="file">">
  10. </p>
  11. <p class="names">
  12. <label for="fileTo"><tmpl_var name="_REN_STRING"></label>
  13. <input type="text" name="fileTo" id="fileTo" value="<tmpl_var name="file">">
  14. </p>
  15. <p class="names"><input type="submit" value="OK" name="OK"></p>
  16. <input type="hidden" name="dir" value="<tmpl_var name="dir">"/>
  17. <input type="hidden" name="fileFrom" value="<tmpl_var name="file">"/>
  18. </form>
  19. <tmpl_else>
  20. <tmpl_var name="messages">
  21. <tmpl_if name="no_error">
  22. <tmpl_var name="_REN_DONE"><br>
  23. renamed <em><tmpl_var name="fileFrom"></em> to <em><tmpl_var name="fileTo"></em>
  24. <tmpl_else>
  25. <tmpl_var name="_REN_ERROR">
  26. </tmpl_if>
  27. </tmpl_if>
  28. </div>
  29. <div id="close">
  30. [<a id="closeLink" href="#" onclick="window.opener.location.reload();window.close();">Close Window</a>]
  31. </div>
  32. </body>
  33. </html>