small-package/luci-app-fileassistant/luasrc/view/fileassistant.htm

22 lines
948 B
HTML
Raw Normal View History

2021-09-24 23:37:27 +08:00
<%+header%>
2022-04-07 23:41:34 +08:00
<link rel="stylesheet" href="/luci-static/resources/fileassistant/fb.css<%# ?v=PKG_VERSION %>">
2021-09-24 23:37:27 +08:00
<h2 name="content">文件助手</h2>
<fieldset class="cbi-section fb-container">
<input id="current-path" type="text" class="current-path cbi-input-text" value="/"/>
<div class="panel-container">
<div class="panel-title">文件列表</div>
<button id="upload-toggle" class="upload-toggle cbi-button cbi-button-edit">上传</button>
2022-04-07 23:41:34 +08:00
<button id="mkdir-toggle" class="upload-toggle cbi-button cbi-button-edit">新建文件夹&hellip; </button>
2021-09-24 23:37:27 +08:00
</div>
<div class="upload-container" id="upload-container">
<input id="upload-file" name="upload-file" class="upload-file" type="file">
<button type="button" class="cbi-button cbi-input-apply">点我上传</button>
</div>
<div id="list-content"></div>
</fieldset>
2022-04-07 23:41:34 +08:00
<script src="/luci-static/resources/fileassistant/fb.js<%# ?v=PKG_VERSION %>"></script>
2021-09-24 23:37:27 +08:00
<%+footer%>