| @@ -1,6 +1,13 @@ | ||
| 1 | +<?php | |
| 2 | +if (!defined('ABSPATH')) { | |
| 3 | + exit; | |
| 4 | +} | |
| 5 | +?> | |
| 6 | + | |
| 1 | 7 | <!DOCTYPE html> |
| 2 | 8 | <html lang="en"> |
| 9 | + | |
| 3 | 10 | <head> |
| 4 | 11 | <meta charset="UTF-8"> |
| 5 | 12 | <meta http-equiv="X-UA-Compatible" content="IE=edge"> |
| 6 | 13 | <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| @@ -5,24 +12,28 @@ | ||
| 5 | 12 | <meta http-equiv="X-UA-Compatible" content="IE=edge"> |
| 6 | 13 | <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| 7 | 14 | <title>Document</title> |
| 8 | 15 | <style> |
| 9 | - body { | |
| 10 | - background-color: hsla(215, 79%, 96%, 100%); | |
| 11 | - font-family: 'Roboto', sans-serif; | |
| 12 | - } | |
| 13 | - .not-found { | |
| 14 | - display: flex; | |
| 15 | - justify-content: center; | |
| 16 | - align-items: center; | |
| 17 | - } | |
| 18 | - .not-found h1 { | |
| 19 | - color: hsla(0, 100%, 50%, 100%); | |
| 20 | - } | |
| 16 | + body { | |
| 17 | + background-color: hsla(215, 79%, 96%, 100%); | |
| 18 | + font-family: 'Roboto', sans-serif; | |
| 19 | + } | |
| 20 | + | |
| 21 | + .not-found { | |
| 22 | + display: flex; | |
| 23 | + justify-content: center; | |
| 24 | + align-items: center; | |
| 25 | + } | |
| 26 | + | |
| 27 | + .not-found h1 { | |
| 28 | + color: hsla(0, 100%, 50%, 100%); | |
| 29 | + } | |
| 21 | 30 | </style> |
| 22 | 31 | </head> |
| 32 | + | |
| 23 | 33 | <body> |
| 24 | 34 | <div class="not-found"> |
| 25 | 35 | <h1>Form not found</h1> |
| 26 | 36 | </div> |
| 27 | 37 | </body> |
| 38 | + | |
| 28 | 39 | </html> |