31 lines
1.1 KiB
HTML
31 lines
1.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="zh-CN">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>文件编辑器</title>
|
|
<link rel="stylesheet" href="/static/file_manager/style.css">
|
|
<link rel="stylesheet" href="/static/file_manager/editor.css">
|
|
</head>
|
|
<body>
|
|
<div id="editorApp">
|
|
<header class="fe-header">
|
|
<div class="fe-left">
|
|
<button class="fm-btn" id="btnBack">← 返回</button>
|
|
<div class="fe-path" id="filePath"></div>
|
|
</div>
|
|
<div class="fe-right">
|
|
<span class="fe-status" id="statusInfo">未保存修改</span>
|
|
<button class="fm-btn" id="btnDownload">下载</button>
|
|
<button class="fm-btn" id="btnIncreaseFont">A+</button>
|
|
<button class="fm-btn" id="btnDecreaseFont">A-</button>
|
|
<button class="fm-btn primary" id="btnSave">保存</button>
|
|
</div>
|
|
</header>
|
|
<main class="fe-main">
|
|
<textarea id="editorArea" spellcheck="false"></textarea>
|
|
</main>
|
|
</div>
|
|
<script src="/static/file_manager/editor.js"></script>
|
|
</body>
|
|
</html>
|