HEX
Server: Apache/2.4.57 (Unix) OpenSSL/1.0.2k-fips
System: Linux golden.server-sky-dns.com 3.10.0-1160.59.1.el7.x86_64 #1 SMP Mon Mar 7 01:49:29 EST 2022 x86_64
User: arkitgroups (1041)
PHP: 8.2.8
Disabled: NONE
Upload Files
File: /home/arkitgroups/arkitpay.online/wp-content/plugins/easy-under-construction/templates/three.php
<?php 
function displayDefaultComingSoonPage()
{
displayComingSoonPage(trim(get_bloginfo('title')).' is coming soon', get_bloginfo('url'), 'is coming soon');
}
function displayComingSoonPage($title, $headerText, $bodyText)
{
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
  <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <title>
      <?php echo $title; ?>
    </title>
    <style type="text/css">
      .easyuc img {
        width: 36%;
      }
      .easyuc {
        text-align: center;
      }
      h1 {
        font-family: monospace;
      }
      h2 {
        font-size: 24px;
        font-family: monospace;
      }
      html, body {
        background: #ff9a00;
      }
      @media only screen and (max-width: 980px) {
        .easyuc img {
          width: 100% !important;
        }
        h1 {
          font-size: 45px !IMPORTANT;
          margin-top: 10% !IMPORTANT;
          font-family: monospace;
        }
        h2 {
          font-size: 42px !IMPORTANT;
        }
      }
    </style>
    <?php
echo "<style>";
echo "html, body {";
echo "background:" . $bgcolor = stripslashes(get_option('easyunderConstructionbgcolor_three')) . "!Important";	
echo "}";
echo "</style>";
?>			
  </head>
  <body>		
    <div class="easyuc">
      <h1>
        <?php echo get_bloginfo('title'). " is"; ?>
      </h1>
      <img src="<?php echo plugin_dir_url(__FILE__) . "images/ucthree.png"; ?>">			
      <h2>
        <?php echo "We will be back soon."; ?>
      </h2>
    </div>
  </body>
</html>
<?php 
}
/* EOF */
?>