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

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

- Page: https://pluginprobe.com/plugins/bit-form/2.10.2/code/views/view-root.php
- Raw: https://pluginprobe.com/plugins/bit-form/2.10.2/raw/views/view-root.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.2/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>
<style>
  .__root-wrp{
    display: grid;
    place-content:center;
    height: 90vh;
    text-align: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  .__root-logo{margin-inline: auto;}
  .__root-title{color:white;}
  .__root-subtitle{color:gray;}
</style>

<div id="btcd-app">
  <div class="__root-wrp">
    <img alt="bitform-logo" class="__root-logo" width="40" src="<?php echo BITFORMS_ASSET_URI; ?>/logo.svg">
    <h1 class="__root-title">Welcome to Bit Form.</h1>
    <p class="__root-subtitle">Modern form solution in Wordpress</p>
  </div>
</div>
<script>
  const { backgroundColor } = window.getComputedStyle(document.querySelector('#wpadminbar'))
  document.querySelector('#wpbody').style.backgroundColor = backgroundColor
  document.querySelector('#wpcontent').style.paddingLeft = 0
</script>
<script defer type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/xlsx/0.16.8/xlsx.full.min.js"></script>

```
