Newer
Older
express-blog / src / views / pages / redirect.handlebars
@Jason Jason on 13 Jul 665 bytes modified: src/app.js
<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Redirecting...</title>
    <meta http-equiv="refresh" content="0; url={{adminLoginUrl}}">
</head>

<body>
    <div style="text-align: center; padding: 50px; font-family: Arial, sans-serif;">
        <h2>Redirecting...</h2>
        <p>Please wait while we redirect you to the authentication service.</p>
        <p>If you are not redirected automatically, <a href="{{adminLoginUrl}}">click here</a>.</p>
    </div>

    <script>
        window.location.href = '{{adminLoginUrl}}';
    </script>
</body>

</html>