Study/templates/logout.html
2024-11-20 12:37:58 +08:00

31 lines
836 B
HTML

<!DOCTYPE html>
<html lang="en">
<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') }}">
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script src="{{ url_for('static', filename='script.js') }}"></script>
</head>
<body>
<header>
<div class="navbar">
<a href="/">首页</a>
<a href="/articles">文章列表</a>
<a href="/auth/login">登录</a>
<a href="/auth/register">注册</a>
</div>
</header>
<main>
{% block content %}
{% endblock %}
</main>
<footer>
<p>&copy; 2024 文章管理系统</p>
</footer>
</body>
</html>