# bit-form/1.9/views/view-root.php

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

- Page: https://pluginprobe.com/plugins/bit-form/1.9/code/views/view-root.php
- Raw: https://pluginprobe.com/plugins/bit-form/1.9/raw/views/view-root.php
- Modified: 2022-07-17T09:28:52+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/1.9/code/views/view-root.php#L10-L20`.

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

<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="btcd-app">
  <div
    style="display: flex;flex-direction: column;justify-content: center;align-items: center;height: 90vh;font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;">
    <img alt="bitform-logo" class="bit-logo" width="70" src="<?php echo BITFORMS_ASSET_URI; ?>/img/logo.svg">
    <h1>Welcome to Bit Form.</h1>
    <p>Modern Form builder and database management system for Wordpress</p>
  </div>
</div>
<script defer type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/xlsx/0.16.8/xlsx.full.min.js"></script>

<?php if(defined('BIT_DEV') && BIT_DEV){ ?>
<script type="module">
  import RefreshRuntime from "<?php echo BIT_DEV; ?>/@react-refresh"
  RefreshRuntime.injectIntoGlobalHook(window)
  window.$RefreshReg$ = () => { }
  window.$RefreshSig$ = () => (type) => type
  window.__vite_plugin_react_preamble_installed__ = true
</script>
<script type="module" src="<?php echo BIT_DEV; ?>/@vite/client"></script>
<script type="module" src="<?php echo BIT_DEV; ?>/index.jsx"></script>
<?php } ?>
```
