summaryrefslogtreecommitdiff
path: root/templates/index.html
blob: 0576890aafa9a444a29c4542881d2818ad9a7dc2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<!DOCTYPE html>
<html>
	<head>
		<title>高中风险地区表格压缩器</title>
		<link rel="stylesheet" href="/static/index.css"
	</head>
	<body>
		{% with messages = get_flashed_messages() %}
			{% if messages %}
				<ul class="error">
				{% for message in messages %}
					<li>{{ message }}</li>
				{% endfor %}
				</ul>
			{% endif %}
		{% endwith %}
		<form method="post" action="/" enctype="multipart/form-data">
			<input
				name="file"
				type="file"
				accept="application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"
			/>
			<input value="上传" type="submit" />
		</form>
	</body>
</html>