photo/templates/index.html

22 lines
672 B
HTML
Raw Normal View History

<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>首页</title>
<link rel="stylesheet" href="{{ url_for('static', filename='styles.css') }}">
</head>
<body>
<div class="container">
<h1>欢迎来到照片管理系统</h1>
<nav>
<ul>
<li><a href="{{ url_for('user_management') }}">用户管理</a></li>
<li><a href="{{ url_for('upload') }}">上传照片</a></li>
<li><a href="{{ url_for('search') }}">查询照片</a></li>
</ul>
</nav>
</div>
</body>
</html>