12345678910111213141516171819202122232425 |
- <form action="{:url('cms.themes/createFolder')}" id="form">
- <input type="hidden" name="folder" value="{$folderpath}" />
- <table class="formtable">
- <tr>
- <th>当前路径:</th>
- <td><input class="input w300 readonly fn-tar" disabled type="text" value="{$folderpath}" /></td>
- </tr>
- <tr>
- <th>目录名称:</th>
- <td><input datatype="alpha" class="input w300" type="text" value="" name="foldername"/></td>
- </tr>
- <tr>
- <th></th>
- <td>
- <input type="submit" value="确定" class="button button-blue submit" />
- <input type="reset" value="重置" class="button" />
- </td>
- </tr>
- </table>
- </form>
- <script type="text/javascript">
- Do('base', 'layer', 'form', function () {
- $('#form').isForm({reload:1});
- });
- </script>
|