basic_auth.html 851 B

123456789101112131415161718192021222324252627
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5. <title>Authentication Required</title>
  6. <meta name="viewport" content="width=device-width, initial-scale=1">
  7. {# Prevent the demo site from being indexed #}
  8. <meta name="robots" content="noindex" />
  9. <style>
  10. h1 { font-size: 3rem; }
  11. body { font: 1rem sans-serif; color: #333; }
  12. article { display: block; text-align: center; margin: 0 auto; }
  13. a { color: #2e1f5e; }
  14. a:hover { color: #333; }
  15. </style>
  16. </head>
  17. <body>
  18. <article>
  19. <h1>Authentication Required</h1>
  20. <p>You must login to view this site</p>
  21. <h3>Looking for Wagtail? Visit <a href="https://wagtail.org">wagtail.org</a>.</h3>
  22. </article>
  23. </body>
  24. </html>