| 1 |
<?php if (!defined('ABSPATH') && !defined('BITFORMS_ASSET_URI')) { |
| 2 |
exit; |
| 3 |
} ?> |
| 4 |
|
| 5 |
<noscript>You need to enable JavaScript to run this app.</noscript> |
| 6 |
<style> |
| 7 |
.__root-wrp{ |
| 8 |
display: grid; |
| 9 |
place-content:center; |
| 10 |
height: 90vh; |
| 11 |
text-align: center; |
| 12 |
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; |
| 13 |
} |
| 14 |
.__root-logo{margin-inline: auto;} |
| 15 |
.__root-title{color:white;} |
| 16 |
.__root-subtitle{color:gray;} |
| 17 |
</style> |
| 18 |
|
| 19 |
<div id="btcd-app"> |
| 20 |
<div class="__root-wrp"> |
| 21 |
<img alt="bitform-logo" class="__root-logo" width="40" src="<?php echo BITFORMS_ASSET_URI; ?>/logo.svg"> |
| 22 |
<h1 class="__root-title">Welcome to Bit Form.</h1> |
| 23 |
<p class="__root-subtitle">Modern form solution in Wordpress</p> |
| 24 |
</div> |
| 25 |
</div> |
| 26 |
<script> |
| 27 |
const { backgroundColor } = window.getComputedStyle(document.querySelector('#wpadminbar')) |
| 28 |
document.querySelector('#wpbody').style.backgroundColor = backgroundColor |
| 29 |
document.querySelector('#wpcontent').style.paddingLeft = 0 |
| 30 |
</script> |
| 31 |
<script defer type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/xlsx/0.16.8/xlsx.full.min.js"></script> |
| 32 |
|