PluginProbe
Bit Form – Contact Form, Payment Forms, Multi Step Forms, Calculator & Custom Form Builder / 3.3.1
Bit Form – Contact Form, Payment Forms, Multi Step Forms, Calculator & Custom Form Builder v3.3.1
3.3.1 V-3.3.0 3.2.2 3.2.1 3.2.0 3.1.4 3.1.3 3.1.2 3.1.1 3.1.0 V3.0.3 V3.0.2 -3.0.1 V_3.0.0 1.1.1 1.1.8 1.2 1.3 1.4 1.4.18 1.5.2 1.9 2.0 2.10.0 2.10.1 All 138 releases
← All changes | views/form-not-found.php +23 -12 2.03.3.1 View file →
@@ -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>