mirror of
https://github.com/kxgx/2.13-Ink-screen-clock.git
synced 2026-03-18 07:33:16 +08:00
23 lines
573 B
HTML
23 lines
573 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>字体上传和管理</title>
|
|
</head>
|
|
<body>
|
|
<h1>上传字体文件</h1>
|
|
<form method="post" action="/upload" enctype="multipart/form-data">
|
|
<input type="file" name="font_file">
|
|
<input type="submit" value="上传">
|
|
</form>
|
|
|
|
<h2>已上传的字体文件:</h2>
|
|
<ul>
|
|
{% for font_file in font_files %}
|
|
<li>{{ font_file }}</li>
|
|
{% else %}
|
|
<li>没有找到字体文件。</li>
|
|
{% endfor %}
|
|
</ul>
|
|
</body>
|
|
</html> |