/ backend / templates / forbidden-handler.html.hbs
forbidden-handler.html.hbs
 1  <!DOCTYPE html>
 2  <html lang="en">
 3  
 4  <head>
 5      <title>Forbidden</title>
 6      <link rel="stylesheet" type="text/css" href="/api/public/styles.css" media="screen" />
 7  </head>
 8  
 9  <body>
10      <div>
11          <h1>Access denied</h1>
12          You lack the required permissions to view this page
13      </div>
14  </body>
15  
16  </html>