CINXE.COM
<!DOCTYPE html> <html> <head> <style> body { font-family: Arial, sans-serif; display: flex; justify-content: center; align-items: center; height: 100vh; margin: 0; background-color: rgba(0, 0, 0, 0.5); } .dialog { background-color: white; border-radius: 10px; padding: 40px; text-align: center; max-width: 500px; box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); } .icon { width: 100px; height: 100px; margin-bottom: 20px; } h1 { color: #333; font-size: 24px; line-height: 1.4; margin-bottom: 30px; } .close-button { background-color: #0066cc; color: white; border: none; padding: 15px 40px; font-size: 20px; border-radius: 5px; cursor: pointer; text-decoration: none; } </style> </head> <body> <div class="dialog"> <svg class="icon" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"> <rect width="20" height="24" x="2" fill="#6366f1" /> <path d="M7 8L17 8M7 12L17 12M7 16L17 16" stroke="white" stroke-width="2"/> <path d="M8 19L12 15L16 19" stroke="white" fill="none" stroke-width="2"/> </svg> <h1> Looks like department servers are having a little trouble right now. We're aware of the issue and we're rushing to fix it. Thanks for your patience! </h1> <a class="close-button" href="https://tnpsc.gov.in/">Try Again</a> </div> </body> </html>