2024-07-29 11:43:52 +08:00

19 lines
495 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Forbidden</title>
<script src="{{ url_for('static', filename='js/jquery.min.js')}}"></script>
</head>
<body>
<h1 style="margin-top: 50px;">您无法访问相关资源!</h1>
<h3>请先登录再访问该界面!</h3>
<h3>3秒后自动跳转...</h3>
<script>
setTimeout(function() {
window.location.replace('{{ url_for("auth.login") }}');
}, 3000);
</script>
</body>
</html>