“shubhamdhamal” commited on
Commit
e4f4784
·
1 Parent(s): 94a151a

Auto-redirect to dashboard after 1 second

Browse files
Files changed (1) hide show
  1. web_app/templates/redirect.html +11 -5
web_app/templates/redirect.html CHANGED
@@ -4,25 +4,31 @@
4
  <meta charset="UTF-8">
5
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
  <title>Success!</title>
 
7
  <script src="https://cdn.tailwindcss.com"></script>
8
  <link rel="stylesheet" href="{{ url_for('static', filename='css/glassmorphic.css') }}">
 
 
 
 
 
9
  </head>
10
  <body class="grid-background min-h-screen flex items-center justify-center px-6">
11
  <div class="glass-card p-8 max-w-md text-center">
12
  <div class="mb-6">
13
- <svg class="w-20 h-20 mx-auto text-green-500" fill="none" stroke="currentColor" viewBox="0 0 24 24">
14
  <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z"></path>
15
  </svg>
16
  </div>
17
  <h1 class="text-3xl font-bold text-gray-900 dark:text-white mb-4">
18
  Welcome! 🎉
19
  </h1>
20
- <p class="text-gray-600 dark:text-gray-400 mb-8">
21
  You're successfully logged in!
22
  </p>
23
- <a href="{{ redirect_url }}" class="block w-full bg-blue-500 hover:bg-blue-600 text-white font-bold py-3 px-6 rounded-lg transition">
24
- Go to Dashboard →
25
- </a>
26
  </div>
27
  </body>
28
  </html>
 
4
  <meta charset="UTF-8">
5
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
  <title>Success!</title>
7
+ <meta http-equiv="refresh" content="1;url={{ redirect_url }}">
8
  <script src="https://cdn.tailwindcss.com"></script>
9
  <link rel="stylesheet" href="{{ url_for('static', filename='css/glassmorphic.css') }}">
10
+ <script>
11
+ setTimeout(function() {
12
+ window.location.href = "{{ redirect_url }}";
13
+ }, 1000);
14
+ </script>
15
  </head>
16
  <body class="grid-background min-h-screen flex items-center justify-center px-6">
17
  <div class="glass-card p-8 max-w-md text-center">
18
  <div class="mb-6">
19
+ <svg class="w-20 h-20 mx-auto text-green-500 animate-pulse" fill="none" stroke="currentColor" viewBox="0 0 24 24">
20
  <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z"></path>
21
  </svg>
22
  </div>
23
  <h1 class="text-3xl font-bold text-gray-900 dark:text-white mb-4">
24
  Welcome! 🎉
25
  </h1>
26
+ <p class="text-gray-600 dark:text-gray-400 mb-4">
27
  You're successfully logged in!
28
  </p>
29
+ <p class="text-sm text-gray-500 dark:text-gray-500">
30
+ Redirecting to dashboard...
31
+ </p>
32
  </div>
33
  </body>
34
  </html>