mangayomi/packages/desktop_webview_window/example/test_web_pages/login.html
kodjomoustapha 9217bc6a3b fix
2024-02-07 15:19:26 +01:00

18 lines
No EOL
337 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Redirect if login</title>
</head>
<body>
Auto redirect after to 2 seconds.
<script type="application/javascript">
setTimeout(function () {
window.location.href = "login_success?username=test&token=xxxxx";
}, 2000);
</script>
</body>
</html>