ACC SHELL
<?php
$footerBox1 = '';
$footerBox2 = '';
$footerBox3 = '';
$footerBox4 = '';
if ( $settings[ 'contactFormVisible' ] == '1' )
{
$footerBox1 = '';
$footerBox2 = fuckOffOrphans( $settings['footerText1'] );
$footerBox3 = fuckOffOrphans( $settings['footerText2'] );
$footerBox4 = fuckOffOrphans( $settings['footerText3'] );
}
else
{
$footerBox1 = fuckOffOrphans( $settings['footerText1'] );
$footerBox2 = fuckOffOrphans( $settings['footerText2'] );
$footerBox3 = fuckOffOrphans( $settings['footerText3'] );
$footerBox4 = fuckOffOrphans( $settings['footerText4'] );
}
if ( $settings['facebookLikeBoxVisible'] == '1' )
{
$footerBox4 = $settings['facebookLikeBoxCode'];
}
if ( ( $footerBox1 != '' ) || ( $footerBox2 != '' ) || ( $footerBox3 != '' ) || ( $footerBox4 != '' ) )
{
?>
<div class="foot-side-cover">
<div class="foot-column">
<?= $footerBox2 ?>
</div>
<div class="foot-column">
<?php
if ( $settings[ 'contactFormVisible' ] == '1' )
{
?>
<div id="contact-form-foot">
<h3 style="text-align:center;">Contact form</h3>
<form name="contactFormFooter" id="contactFormFooter" action="" method="post">
<div class="login-label">
Name: <span class="orange">*</span>
</div>
<div class="login-label">
Surname: <span class="orange">*</span>
</div>
<div class="cleaner"></div>
<input type="text" class="register-input" id="contactFormFooter_name" name="name" value="<?= $_name ?>" />
<input type="text" class="register-input" id="contactFormFooter_surname" name="surname" value="<?= $_surname ?>" />
<div class="cleaner5"></div>
<div class="login-label">
E-mail: <span class="orange">*</span>
</div>
<div class="login-label">
Phone:
</div>
<div class="cleaner"></div>
<input type="text" class="register-input" id="contactFormFooter_email" name="email" value="<?php echo ( ( $_email != '' ) ? $_email : '@' ); ?>" />
<input type="text" class="register-input" id="contactFormFooter_phone" name="phone" value="<?= $_phone ?>" />
<div class="cleaner5"></div>
<div class="login-label">
Message: <span class="orange">*</span>
</div>
<textarea class="textarea" cols="10" rows="5" name="text" id="contactFormFooter_text"><?= $_text ?></textarea>
<div class="cleaner10"></div>
<div class="login-label-22" >
Write numerals "three two one":
</div>
<input type="text" id="contactFormFooter_22" name="22" value="" class="register-input-22" />
<div class="cleaner10"></div>
<div class="cleaner10"></div>
<div class="form-news">
<input type="checkbox" name="newsletter" id="newsletter" checked="checked" style="padding:10px;" />
<label for="newsletter" >I would like to receive your newsletter</label>
</div>
<div class="cleaner20"></div>
<input type="submit" id="contactFormFooterSubmit" name="contactFormFooterSubmit" class="odeslat" value="Send" />
</form>
</div>
<?php
}
?>
<?= $footerBox1 ?>
</div>
<div class="foot-column">
<?= $footerBox3 ?>
</div>
<div class="cleaner30"></div>
</div>
<div class="cleaner"></div>
<?php
}
?>
<div class="last-line">
<p><?= stripcslashes( $footerHTML) ?></p>
<a href="http://www.tridvajedna.cz" title="Website by: 321 Creative People" target="_blank" class="logo321"><img src="/img/321-CREATIVE-PEOPLE-black.png" alt="321 Creative People" /></a>
</div>
ACC SHELL 2018