PluginProbe
Bit Form – Contact Form, Payment Forms, Multi Step Forms, Calculator & Custom Form Builder / V3.0.2
Bit Form – Contact Form, Payment Forms, Multi Step Forms, Calculator & Custom Form Builder vV3.0.2
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 2.10.2 All 137 releases
bit-form / views / form-not-found.php

form-not-found.php in Bit Form – Contact Form, Payment Forms, Multi Step Forms, Calculator & Custom Form Builder V3.0.2, at views/form-not-found.php

39 lines 638 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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>