UNPKG

hapi-error

Version:

catch errors in your hapi application and display the appropriate error message/page

39 lines (37 loc) 786 B
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>{{errorTitle}}</title> <style> body { font-family: Helvetica, sans-serif; text-align: center; background: #f1c40f; transition: background 500ms ease; color: #424545; } .error h1 { font-size: 10em; } .error h2 { top: 10%; } .error h2.emoji { font-size: 4em; } body:hover, body:active { background: #2ecc71; transition: background 3s ease-in; } </style> </head> <body> <div class="error"> <h2 class='emoji'>&#x25D5; &#xFE35; &#x25D5;</h2> <h2>{{errorMessage}}</h2> <h1>{{statusCode}}</h1> <p>{{email}}</p> </div> </body> </html>