| 1 |
<?php |
| 2 |
if (!defined('ABSPATH')) { |
| 3 |
exit; |
| 4 |
} |
| 5 |
?> |
| 6 |
|
| 7 |
<!DOCTYPE html> |
| 8 |
<html lang="en"> |
| 9 |
|
| 10 |
<head> |
| 11 |
<meta charset="UTF-8"> |
| 12 |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> |
| 13 |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| 14 |
<title>Document</title> |
| 15 |
<style> |
| 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 |
} |
| 30 |
</style> |
| 31 |
</head> |
| 32 |
|
| 33 |
<body> |
| 34 |
<div class="not-found"> |
| 35 |
<h1>Form not found</h1> |
| 36 |
</div> |
| 37 |
</body> |
| 38 |
|
| 39 |
</html> |