# bit-form/3.1.1/views/form-not-found.php

Bit Form – Contact Form, Payment Forms, Multi Step Forms, Calculator &amp; Custom Form Builder, version 3.1.1. 39 lines.

- Page: https://pluginprobe.com/plugins/bit-form/3.1.1/code/views/form-not-found.php
- Raw: https://pluginprobe.com/plugins/bit-form/3.1.1/raw/views/form-not-found.php
- Modified: 2024-09-29T09:41:32+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/bit-form/3.1.1/code/views/form-not-found.php#L10-L20`.

```php
<?php
if (!defined('ABSPATH')) {
  exit;
}
?>

<!DOCTYPE html>
<html lang="en">

<head>
  <meta charset="UTF-8">
  <meta http-equiv="X-UA-Compatible" content="IE=edge">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Document</title>
  <style>
  body {
    background-color: hsla(215, 79%, 96%, 100%);
    font-family: 'Roboto', sans-serif;
  }

  .not-found {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .not-found h1 {
    color: hsla(0, 100%, 50%, 100%);
  }
  </style>
</head>

<body>
  <div class="not-found">
    <h1>Form not found</h1>
  </div>
</body>

</html>
```
