Spaces:
Sleeping
Sleeping
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title>Session Complete</title> | |
| <link rel="icon" href="/static/favicon.ico" type="image/x-icon"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <style> | |
| body { | |
| background-color: #1e1e1e; | |
| color: #dcdcdc; | |
| font-family: Arial, sans-serif; | |
| margin: 0; | |
| height: 100vh; | |
| display: flex; | |
| justify-content: center; | |
| align-items: center; | |
| } | |
| .wrapper { | |
| text-align: center; | |
| max-width: 400px; | |
| padding: 30px; | |
| } | |
| .message { | |
| font-size: 20px; | |
| margin-bottom: 30px; | |
| color: #a0ffaf; | |
| } | |
| .btn { | |
| padding: 10px 25px; | |
| background-color: #3e8e41; | |
| color: white; | |
| border: none; | |
| border-radius: 4px; | |
| font-size: 16px; | |
| text-decoration: none; | |
| display: inline-block; | |
| } | |
| .btn:hover { | |
| background-color: #367635; | |
| } | |
| </style> | |
| </head> | |
| <body> | |
| <div class="wrapper"> | |
| <div class="message">The session has been completed by the user.</div> | |
| <a href="/" class="btn">Back to Home</a> | |
| </div> | |
| </body> | |
| </html> | |