kami/yunpan/templates/index.html
2025-04-11 19:23:43 +08:00

27 lines
689 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>简单云盘</title>
</head>
<body>
<h1>文件管理</h1>
<form action="/upload" method="post" enctype="multipart/form-data">
<input type="file" name="file" required>
<input type="submit" value="上传文件">
</form>
<h2>文件列表</h2>
<ul>
{% for file in files %}
<li>
{{ file }}
<a href="/download/{{ file }}">下载</a>
<a href="/delete/{{ file }}" onclick="return confirm('确定删除?')">删除</a>
</li>
{% else %}
<li>暂无文件</li>
{% endfor %}
</ul>
</body>
</html>