error.html 683 B

12345678910111213141516171819202122232425262728293031
  1. {% load staticfiles %}
  2. <!DOCTYPE html>
  3. <html lang="en">
  4. <head>
  5. <meta charset="UTF-8">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <meta http-equiv="X-UA-Compatible" content="ie=edge">
  8. <title>404</title>
  9. <link rel="stylesheet" href="{% static '/lib/css/reset.css' %}">
  10. <style>
  11. div{
  12. height: 100vh;
  13. display: flex;
  14. display: -webkit-flex;
  15. justify-content: center;
  16. align-items: center;
  17. }
  18. img{
  19. width: 50%;
  20. }
  21. </style>
  22. </head>
  23. <body>
  24. <div>
  25. <img src="{% static 'imgs/errorPage.png'%}" alt="">
  26. </div>
  27. </body>
  28. </html>