Sha256: faf9df04ea1b651abb22c710fbf562f9b1b94ea57ae3d8d3a1b21721508860e9

Contents?: true

Size: 1.16 KB

Versions: 15

Compression:

Stored size: 1.16 KB

Contents

<!DOCTYPE html>
<html lang="en">
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>Redirecting...</title>
        <style>
            body, html {
                height: 100%;
                margin: 0;
                display: flex;
                justify-content: center;
                align-items: center;
                background-color: #f0f0f0;
            }
            .container {
                text-align: center;
            }
            img {
                max-width: 50%;
                max-height: 80vh;
                object-fit: contain;
            }
        </style>
        <script>
            fetch('/redirect')
                .then(response => response.json())
                .then(data => {
                    setTimeout(() => {
                        window.location.href = data.redirect_url;
                    }, 500);
                })
                .catch(error => console.error('Error:', error));
        </script>
    </head>
    <body>
        <div class="container">
            <img src="solara.png" alt="Logo Image">
        </div>
    </body>
</html>

Version data entries

15 entries across 15 versions & 1 rubygems

Version Path
solara-0.7.4 solara/lib/core/dashboard/local.html
solara-0.7.3 solara/lib/core/dashboard/local.html
solara-0.7.2 solara/lib/core/dashboard/local.html
solara-0.7.1 solara/lib/core/dashboard/local.html
solara-0.7.0 solara/lib/core/dashboard/local.html
solara-0.6.0 solara/lib/core/dashboard/local.html
solara-0.5.0 solara/lib/core/dashboard/local.html
solara-0.4.0 solara/lib/core/dashboard/local.html
solara-0.3.0 solara/lib/core/dashboard/local.html
solara-0.2.4 solara/lib/core/dashboard/local.html
solara-0.2.3 solara/lib/core/dashboard/local.html
solara-0.2.2 solara/lib/core/dashboard/local.html
solara-0.2.1 solara/lib/core/dashboard/local.html
solara-0.2.0 solara/lib/core/dashboard/local.html
solara-0.1.0 solara/lib/core/dashboard/local.html