| 12345678910111213141516171819202122232425262728293031 |
- {% load staticfiles %}
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <meta http-equiv="X-UA-Compatible" content="ie=edge">
- <title>404</title>
- <link rel="stylesheet" href="{% static '/lib/css/reset.css' %}">
- <style>
- div{
- height: 100vh;
- display: flex;
- display: -webkit-flex;
- justify-content: center;
- align-items: center;
- }
- img{
- width: 50%;
- }
- </style>
- </head>
- <body>
- <div>
- <img src="{% static 'imgs/errorPage.png'%}" alt="">
- </div>
- </body>
- </html>
|