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

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

- Page: https://pluginprobe.com/plugins/bit-form/2.10.1/code/views/form-not-found.php
- Raw: https://pluginprobe.com/plugins/bit-form/2.10.1/raw/views/form-not-found.php
- Modified: 2023-02-28T14:03:48+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/2.10.1/code/views/form-not-found.php#L10-L20`.

```php
<!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>
```
