UNPKG

master

Version:

Master is a node web-application framework that includes everything needed to create database-backed web applications according to the Model-View-Controller (MVC) pattern

62 lines (61 loc) 2.19 kB
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Gateway Timeout (504)</title> <style> * { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%); min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 2em; } .container { background: white; border-radius: 16px; box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3); max-width: 600px; width: 100%; overflow: hidden; } .header { background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%); color: #2d3436; padding: 3em 2em; text-align: center; } .status-code { font-size: 3em; font-weight: 900; margin-bottom: 0.3em; } .title { font-size: 2em; font-weight: 600; } .content { padding: 2em; text-align: center; } .message { font-size: 1.1em; color: #555; margin: 1em 0; } .btn { display: inline-block; padding: 1em 2em; background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%); color: #2d3436; border-radius: 8px; text-decoration: none; margin-top: 1em; } .footer { background: #f8f9fa; padding: 1.5em; text-align: center; color: #6c757d; } </style> </head> <body> <div class="container"> <div class="header"> <div class="status-code">504</div> <h1 class="title">Gateway Timeout</h1> </div> <div class="content"> <p class="message">The server did not receive a timely response from the upstream server.</p> <button class="btn" onclick="location.reload()">↻ Refresh Page</button> </div> <div class="footer">MasterController Framework</div> </div> </body> </html>