2025-03-10 08:35:19 +08:00

15 lines
367 B
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="UTF-8">
<title>正在跳转…</title>
</head>
<body>
<p>登录成功3秒后将自动跳转到后台首页…</p>
<script>
setTimeout(function() {
window.location.href = "{{ url_for('users.list_users') }}";
}, 3000); // 3秒=3000毫秒
</script>
</body>
</html>