Skip to content

Commit

Permalink
New Website
Browse files Browse the repository at this point in the history
New One Page Interface. Whole re-designed Website
  • Loading branch information
simkeyur committed Apr 5, 2014
1 parent f471df7 commit fbd2037
Show file tree
Hide file tree
Showing 137 changed files with 15,858 additions and 10,958 deletions.
1 change: 0 additions & 1 deletion .project

This file was deleted.

4 changes: 0 additions & 4 deletions README.md

This file was deleted.

9 changes: 0 additions & 9 deletions TODO.txt

This file was deleted.

Binary file removed __MACOSX/._utaRadioWebBeta
Binary file not shown.
Binary file removed __MACOSX/utaRadioWebBeta/._.DS_Store
Binary file not shown.
Binary file removed __MACOSX/utaRadioWebBeta/._UTARadio.html
Binary file not shown.
Binary file removed __MACOSX/utaRadioWebBeta/._cordova-2.5.0.js
Binary file not shown.
Binary file removed __MACOSX/utaRadioWebBeta/._css
Binary file not shown.
Binary file removed __MACOSX/utaRadioWebBeta/._img
Binary file not shown.
Binary file removed __MACOSX/utaRadioWebBeta/._js
Binary file not shown.
Binary file removed __MACOSX/utaRadioWebBeta/css/._.DS_Store
Binary file not shown.
Binary file removed __MACOSX/utaRadioWebBeta/css/._index.css
Binary file not shown.
Binary file not shown.
Binary file removed __MACOSX/utaRadioWebBeta/css/._radio.css
Binary file not shown.
Binary file removed __MACOSX/utaRadioWebBeta/css/._themes
Binary file not shown.
Binary file removed __MACOSX/utaRadioWebBeta/css/themes/._.DS_Store
Binary file not shown.
Binary file removed __MACOSX/utaRadioWebBeta/css/themes/._UTARadio.css
Binary file not shown.
Binary file removed __MACOSX/utaRadioWebBeta/css/themes/._UTARadio.min.css
Binary file not shown.
Binary file removed __MACOSX/utaRadioWebBeta/css/themes/._images
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed __MACOSX/utaRadioWebBeta/img/._.DS_Store
Binary file not shown.
Binary file not shown.
Binary file removed __MACOSX/utaRadioWebBeta/img/._activityindicator.gif
Binary file not shown.
Binary file removed __MACOSX/utaRadioWebBeta/img/._envelope.png
Binary file not shown.
Binary file removed __MACOSX/utaRadioWebBeta/img/._facebook.png
Binary file not shown.
Binary file removed __MACOSX/utaRadioWebBeta/img/._home.png
Binary file not shown.
Binary file removed __MACOSX/utaRadioWebBeta/img/._people.png
Binary file not shown.
Binary file removed __MACOSX/utaRadioWebBeta/img/._playbutton.png
Binary file not shown.
Binary file removed __MACOSX/utaRadioWebBeta/img/._stopbutton.png
Binary file not shown.
Binary file removed __MACOSX/utaRadioWebBeta/img/._twitter.png
Binary file not shown.
Binary file removed __MACOSX/utaRadioWebBeta/js/._cutom-setttings.js
Binary file not shown.
Binary file removed __MACOSX/utaRadioWebBeta/js/._html5audio.js
Binary file not shown.
Binary file removed __MACOSX/utaRadioWebBeta/js/._index.js
Binary file not shown.
Binary file removed __MACOSX/utaRadioWebBeta/js/._jquery-1.9.1.min.js
Binary file not shown.
Binary file not shown.
Binary file removed __MACOSX/utaRadioWebBeta/js/._loadXML.js
Binary file not shown.
Binary file removed __MACOSX/utaRadioWebBeta/js/._sendEmail.js
Binary file not shown.
Binary file removed __MACOSX/utaRadioWebBeta/js/._submitToDJ.js
Binary file not shown.
22 changes: 0 additions & 22 deletions changes.txt

This file was deleted.

4 changes: 4 additions & 0 deletions contact/config.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
<?php
// To
define("WEBMASTER_EMAIL", '[email protected]');
?>
43 changes: 43 additions & 0 deletions contact/contact.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
<?php
/*
Credits: Bit Repository
URL: http://www.bitrepository.com/
*/

include 'config.php';

error_reporting (E_ALL ^ E_NOTICE);

$post = (!empty($_POST)) ? true : false;

if($post)
{

$name = stripslashes($_POST['name']);
$email = trim($_POST['email']);
$subject = stripslashes($_POST['subject']);
$message = stripslashes($_POST['message']);


$error = '';



if(!$error)
{
$mail = mail(WEBMASTER_EMAIL, $subject, $message,
"From: ".$name." <".$email.">\r\n"
."Reply-To: ".$email."\r\n"
."X-Mailer: PHP/" . phpversion());


if($mail)
{
echo 'OK';
}

}


}
?>
Loading

0 comments on commit fbd2037

Please sign in to comment.