| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- <!DOCTYPE html>
- <html lang="pt-BR">
- <head>
- <meta charset="utf-8">
- <meta name="viewport" content="width=device-width, initial-scale=1">
- <title>Verificação enviada</title>
- <style>
- :root { color-scheme: light dark; }
- body {
- margin: 0; min-height: 100vh; display: flex; align-items: center; justify-content: center;
- font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
- background: #f6f7f9; color: #1f2933; padding: 24px;
- }
- .card { max-width: 420px; text-align: center; background: #fff; border-radius: 16px; padding: 40px 28px; box-shadow: 0 8px 32px rgba(15, 23, 42, .08); }
- .icon { width: 64px; height: 64px; margin: 0 auto 20px; border-radius: 50%; background: #e8f5e9; display: flex; align-items: center; justify-content: center; font-size: 30px; }
- h1 { font-size: 20px; margin: 0 0 10px; }
- p { margin: 0 0 24px; color: #52606d; line-height: 1.55; font-size: 15px; }
- .btn {
- display: inline-block; width: 100%; box-sizing: border-box; padding: 14px 24px;
- border: 0; border-radius: 999px; background: #2574fc; color: #fff;
- font-size: 16px; font-weight: 600; text-decoration: none; cursor: pointer;
- }
- @media (prefers-color-scheme: dark) {
- body { background: #14181d; color: #e4e7eb; }
- .card { background: #1f242b; box-shadow: none; }
- p { color: #9aa5b1; }
- }
- </style>
- </head>
- <body>
- <div class="card">
- <div class="icon">✓</div>
- <h1>Verificação enviada</h1>
- @if ($scheme)
- <p>Recebemos seus dados e estamos analisando. Estamos te levando de volta ao aplicativo...</p>
- <a class="btn" id="back" href="{{ $scheme }}://verification/done">Voltar ao aplicativo</a>
- <script>
- (function () {
- var target = document.getElementById('back').href;
- setTimeout(function () {
- window.location.replace(target);
- }, 400);
- })();
- </script>
- @else
- <p>Recebemos seus dados e estamos analisando. Você já pode fechar esta janela e voltar ao aplicativo.</p>
- @endif
- </div>
- </body>
- </html>
|