first commit
32
old/CONTENT/FN_C/put_content.php
Normal file
@@ -0,0 +1,32 @@
|
||||
<?php
|
||||
|
||||
function D_news_entry($news){
|
||||
//var_dump($news);
|
||||
$conn = new mysqli($GLOBALS['host'], $GLOBALS['user'], $GLOBALS['pass'], $GLOBALS['db']);
|
||||
|
||||
if ($conn->connect_error) die("Connection failed: " . $conn->connect_error);
|
||||
$qq="SELECT id FROM `".$GLOBALS['table1']."`";
|
||||
$query = $conn->query($qq);
|
||||
if ($query->num_rows > 0) $news["news_link"]=$news["news_link"].time();
|
||||
mysqli_set_charset($conn,"utf8");
|
||||
$stmt = $conn->prepare("INSERT INTO ".$GLOBALS['table1']." (`N_TITLE`, `N_LINK`, `N_CONTENT`, `PICS`, `LANG`, `N_DATE`,`N_CATEGORY`) VALUES (?, ?, ?, ?, ?, ?, ?)");
|
||||
$N_DATE=date('Y-m-d H:i:s');
|
||||
$stmt->bind_param("sssssss", $news["news_title"],$news["news_link"],$news["news_content"],$news["image"],$news["lang"],$N_DATE,$news["news_category"]);
|
||||
|
||||
if($stmt->execute()){
|
||||
$GLOBALS['alert_info']= '<div class="alert alert-dismissible alert-info">
|
||||
<button type="button" class="close" data-dismiss="alert">×</button>
|
||||
<strong>Yes!</strong> Entry Saved successfully
|
||||
<br> Title :'.$news["news_title"].'
|
||||
<br> Link :'.$news["news_link"].'
|
||||
<br> Image :'.$news["image"].'
|
||||
</div>';
|
||||
}else{
|
||||
$GLOBALS['alert_info']= '<div class="alert alert-dismissible alert-danger">
|
||||
<button type="button" class="close" data-dismiss="alert">×</button>
|
||||
<strong>Sorry!</strong> Unable to process db</div>';
|
||||
}
|
||||
$stmt->close();
|
||||
$conn->close();
|
||||
}
|
||||
?>
|
||||
29
old/CONTENT/FRONT_END/HTML/form_login.html
Normal file
@@ -0,0 +1,29 @@
|
||||
<div class="container">
|
||||
<h2>Provide Details to login</h2>
|
||||
<form class="form-horizontal" method="post" enctype="multipart/form-data" ><input type="hidden" name="FORM_NAME" value="pa_login">
|
||||
<div class="form-group">
|
||||
<label class="control-label col-sm-2" for="email">Email:</label>
|
||||
<div class="col-sm-10">
|
||||
<input type="email" class="form-control" placeholder="Enter email" name="email">
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label class="control-label col-sm-2" for="pwd">Password:</label>
|
||||
<div class="col-sm-10">
|
||||
<input type="password" class="form-control" placeholder="Enter password" name="pwd">
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<div class="col-sm-offset-2 col-sm-10">
|
||||
<div class="checkbox">
|
||||
<label><input type="checkbox" name="remember"> Remember me</label>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<div class="col-sm-offset-2 col-sm-10">
|
||||
<button type="submit" class="btn btn-default">Login</button>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
28
old/CONTENT/FRONT_END/HTML/form_signup.html
Normal file
@@ -0,0 +1,28 @@
|
||||
<div class="container">
|
||||
<h2>Provide Details to Create a New Acount</h2>
|
||||
<form class="form-horizontal" method="post" enctype="multipart/form-data" ><input type="hidden" name="FORM_NAME" value="pa_Signup">
|
||||
<div class="form-group">
|
||||
<label class="control-label col-sm-2" > Name:</label>
|
||||
<div class="col-sm-10">
|
||||
<input type="text" class="form-control" placeholder="Full Name" name="name">
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label class="control-label col-sm-2" for="email">Email:</label>
|
||||
<div class="col-sm-10">
|
||||
<input type="email" class="form-control" placeholder="Enter email" name="email">
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label class="control-label col-sm-2" for="pwd">Password:</label>
|
||||
<div class="col-sm-10">
|
||||
<input type="password" class="form-control" placeholder="Enter password" name="pwd">
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<div class="col-sm-offset-2 col-sm-10">
|
||||
<button type="submit" class="btn btn-default">Signup</button>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
25
old/CONTENT/POST_ACTION/add_installment.php
Normal file
@@ -0,0 +1,25 @@
|
||||
<?php
|
||||
//var_dump($_POST);exit();
|
||||
if(isset($_POST["add_i"]) && isset($_POST["AA_ACNO"]) && is_numeric($_POST["add_i"]) ) {
|
||||
$conn = new mysqli($GLOBALS['host'], $GLOBALS['user'], $GLOBALS['pass'], $GLOBALS['db']);
|
||||
if ($conn->connect_error) die("Connection failed: " . $conn->connect_error);
|
||||
if($conn->query("UPDATE `".$GLOBALS['arif_ac']."` SET `AA_BAL` = `AA_BAL`+".$_POST["add_i"]." , `AA_NO_OF_PAYPAID` = `AA_NO_OF_PAYPAID`+1 WHERE `AA_ACNO` = '".$_POST["AA_ACNO"]."'"))
|
||||
//Add entry to Transaction
|
||||
{
|
||||
$AT_USER="Admin";
|
||||
if($conn->query("INSERT INTO `".$GLOBALS['arif_tran']."` (`AT_ID`, `AT_TIMESTAMP`, `AT_ADMIN`, `AT_ACID`, `AT_AMOUNT`) VALUES (NULL, CURRENT_TIMESTAMP, '".$AT_USER."', '".$_POST["AA_ACNO"]."', '".$_POST["add_i"]."')"))
|
||||
$GLOBALS['post_info']="Transaction Success!";
|
||||
else $GLOBALS['post_info']="Error! Config or server";
|
||||
|
||||
/*
|
||||
INSERT INTO `arif_tran` (`AT_ID`, `AT_TIMESTAMP`, `AT_ADMIN`, `AT_ACID`, `AT_AMOUNT`) VALUES (NULL, CURRENT_TIMESTAMP, '', '000', '32');
|
||||
$stmt = $conn->prepare("INSERT INTO `".$GLOBALS['arif_tran']."` (`AT_USER`,`AT_ACID`,`AT_AMOUNT`) VALUES (?, ?, ?)");
|
||||
$stmt->bind_param("ssi" ,$AT_USER,$_POST["AA_ACNO"],$_POST["add_i"]);
|
||||
if($stmt->execute()){
|
||||
$GLOBALS['post_info']="Transaction Success!";
|
||||
} else $GLOBALS['post_info']="Error! Config or server";
|
||||
*/
|
||||
}
|
||||
}else $GLOBALS['post_info']="Error! Check input details";
|
||||
$conn->close();
|
||||
?>
|
||||
37
old/CONTENT/POST_ACTION/gv_create_ac.php
Normal file
@@ -0,0 +1,37 @@
|
||||
<?php
|
||||
if(isset($_POST["ac_type"]) && isset($_POST["ac_name"]) && $_POST["ac_name"]!=""){
|
||||
|
||||
$ca["ac_type"]=$_POST["ac_type"];
|
||||
$ca["ac_name"]=$_POST["ac_name"];
|
||||
$ca["ac_phone"]=$_POST["ac_phone"];
|
||||
$ca["ac_mail"]=$_POST["ac_mail"];
|
||||
$ca["ac_address"]=$_POST["ac_address"];
|
||||
$ca["ac_no"]="GV".$_POST["ac_type"].date("Ymd");
|
||||
//GC_new_entry($ca);
|
||||
|
||||
|
||||
|
||||
$conn = new mysqli($GLOBALS['host'], $GLOBALS['user'], $GLOBALS['pass'], $GLOBALS['db']);
|
||||
|
||||
if ($conn->connect_error) die("Connection failed: " . $conn->connect_error);
|
||||
|
||||
mysqli_set_charset($conn,"utf8");
|
||||
$stmt = $conn->prepare("INSERT INTO ".$GLOBALS['arif_ac']." (`AA_ACTYPE`,`AA_NAME`, `AA_PHONE`, `AA_EMAIL`, `AA_ADDRESS`) VALUES (?, ?, ?, ?, ?)");
|
||||
$stmt->bind_param("sssss" ,$ca["ac_type"],$ca["ac_name"],$ca["ac_phone"],$ca["ac_mail"],$ca["ac_address"]);
|
||||
|
||||
if($stmt->execute()){
|
||||
$lid=$conn->insert_id;$ca["ac_no"]=$ca["ac_no"].$lid;
|
||||
if($conn->query("UPDATE `".$GLOBALS['arif_ac']."` SET `AA_ACNO` = '".$ca["ac_no"]."' WHERE `AA_ID` =".$lid.";"))
|
||||
$GLOBALS['alert_info']= '<div class="alert alert-dismissible alert-info">
|
||||
<button type="button" class="close" data-dismiss="alert">×</button>
|
||||
<strong>Yes!</strong> Entry Saved successfully </div>';
|
||||
}else{
|
||||
$GLOBALS['alert_info']= '<div class="alert alert-dismissible alert-danger">
|
||||
<button type="button" class="close" data-dismiss="alert">×</button>
|
||||
<strong>Sorry!</strong> Unable to process db</div>';
|
||||
}
|
||||
$stmt->close();
|
||||
|
||||
$conn->close();
|
||||
}
|
||||
?>
|
||||
16
old/CONTENT/POST_ACTION/new_news_entry.php
Normal file
@@ -0,0 +1,16 @@
|
||||
<?php
|
||||
if(isset($_POST["FORM_NAME"]) && $_POST["FORM_NAME"]=="new_news_entry"){
|
||||
$D_image_upload1=D_image_upload1("photo_news","NEWS","",400000); //POST name,Path,target_file_name,max_size
|
||||
if($D_image_upload1["D_image_upload1"]=="ok")
|
||||
{
|
||||
//var_dump($D_image_upload1);
|
||||
$news["image"]=$D_image_upload1["name"];
|
||||
$news["news_category"]=$_POST["news_category"];
|
||||
$news["lang"]=$_POST["lang"];
|
||||
$news["news_link"]=$_POST["news_link"];$news["news_link"]=preg_replace('~[^a-zA-Z0-9]+~', '-', $news["news_link"]);
|
||||
$news["news_title"]=$_POST["news_title"];
|
||||
$news["news_content"]=$_POST["news_content"];
|
||||
D_news_entry($news);
|
||||
}
|
||||
}
|
||||
?>
|
||||
1
old/CONTENT/ROOT_URI/Admin/404.php
Normal file
@@ -0,0 +1 @@
|
||||
404
|
||||
10
old/CONTENT/ROOT_URI/Admin/ADMIN_FOOTER.php
Normal file
@@ -0,0 +1,10 @@
|
||||
|
||||
</body>
|
||||
<script src="/CONTENT/cal_GV.js"></script>
|
||||
<script>
|
||||
//document.getElementsByName("CA_No_Of_Payment")[0].addEventListener("input", cal_mature);
|
||||
|
||||
</script>
|
||||
|
||||
|
||||
</html>
|
||||
17
old/CONTENT/ROOT_URI/Admin/ADMIN_HEADER.php
Normal file
@@ -0,0 +1,17 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>Gramin Venture POS Portal</title>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link rel="stylesheet" href="/asset/css/bootstrap.min.css">
|
||||
<script src="/asset/js/jquery.min.js"></script>
|
||||
<script src="/asset/js/bootstrap.min.js"></script>
|
||||
<script src="/asset/js/angular.min.js"></script>
|
||||
<!--<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.4/angular.min.js"></script>
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
|
||||
|
||||
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>-->
|
||||
</head>
|
||||
<body>
|
||||
31
old/CONTENT/ROOT_URI/Admin/ADMIN_nav.php
Normal file
@@ -0,0 +1,31 @@
|
||||
<!-- nav start -->
|
||||
<nav class="navbar navbar-default">
|
||||
<div class="container-fluid">
|
||||
<div class="navbar-header">
|
||||
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
|
||||
<span class="sr-only">Toggle navigation</span>
|
||||
<span class="icon-bar"></span>
|
||||
<span class="icon-bar"></span>
|
||||
<span class="icon-bar"></span>
|
||||
</button>
|
||||
<a class="navbar-brand" href="/Admin/">Gramin Venture</a>
|
||||
</div>
|
||||
|
||||
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
|
||||
<ul class="nav navbar-nav">
|
||||
<li ><a href="/Admin/Create_AC_Recurring">New Recurring </a></li>
|
||||
<li ><a href="/Admin/Create_AC_FD">New FD </a></li>
|
||||
<li ><a href="/Admin/Create_AC_Loan">New Loan </a></li>
|
||||
<li><a href="/Admin/View_AC?Type=Recurring">View A/C</a></li>
|
||||
<!--<li><a href="/Admin/Trans_New">Transaction</a></li>-->
|
||||
<li><a href="/Admin/Report">Report</a></li>
|
||||
<li><a href="/Admin/Settings">Settings</a></li>
|
||||
</ul>
|
||||
</ul>
|
||||
|
||||
<ul class="nav navbar-nav navbar-right">
|
||||
<li><a href="/Admin/Signout">Signout</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
105
old/CONTENT/ROOT_URI/Admin/Create_AC_FD.php
Normal file
@@ -0,0 +1,105 @@
|
||||
<div class="container">
|
||||
|
||||
<?php
|
||||
if(isset($_POST["ac_type"]) && isset($_POST["ac_name"]) && $_POST["ac_name"]!="" && is_numeric($_POST["Mature_Value"]) ) {
|
||||
$return_json['NotiFi'] = "";$return_json['NotiFi_m'] = "";$return_json['NotiFi_d'] = "";
|
||||
$ca["ac_type"]=$_POST["ac_type"];
|
||||
$ca["ac_name"]=$_POST["ac_name"];
|
||||
$ca["ac_phone"]=$_POST["ac_phone"];
|
||||
$ca["ac_mail"]=$_POST["ac_mail"];
|
||||
$ca["ac_address"]=$_POST["ac_address"];
|
||||
$ca["ac_no"]="GV".$_POST["ac_type"].date("Ymd")."F";
|
||||
//GC_new_entry($ca);
|
||||
|
||||
|
||||
|
||||
$conn = new mysqli($GLOBALS['host'], $GLOBALS['user'], $GLOBALS['pass'], $GLOBALS['db']);
|
||||
|
||||
if ($conn->connect_error) die("Connection failed: " . $conn->connect_error);
|
||||
|
||||
$t="FD";
|
||||
$stmt = $conn->prepare("INSERT INTO ".$GLOBALS['arif_ac']." (`AA_ICARD_NO`,`AA_NOMINEE_DETAILS`,`AA_INTEREST`,`AA_DATE`, `AA_DATE_MATURE`, `AA_NO_OF_PAYMENT`,`AA_AMOUNT`, `AA_MATURE_VALUE`, `AA_TYPE`,`AA_ACTYPE`,`AA_NAME`, `AA_PHONE`, `AA_EMAIL`, `AA_ADDRESS`, `AA_ADMIN`) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)");
|
||||
$stmt->bind_param("sssssssssssssss" ,$_POST["AA_ICARD_NO"],$_POST["AA_NOMINEE_DETAILS"],$_POST["CA_interest"], $_POST["date_today"],$_POST["date_mature"],$_POST["CA_No_Of_Payment"],$_POST["CA_Amount"],$_POST["Mature_Value"], $t,$ca["ac_type"],$ca["ac_name"],$ca["ac_phone"],$ca["ac_mail"],$ca["ac_address"],$_SESSION["EMAIL"]);
|
||||
|
||||
if($stmt->execute()){
|
||||
$lid=$conn->insert_id;$ca["ac_no"]=$ca["ac_no"].$lid;
|
||||
if($conn->query("UPDATE `".$GLOBALS['arif_ac']."` SET `AA_ACNO` = '".$ca["ac_no"]."' WHERE `AA_ID` =".$lid.";"))
|
||||
{$return_json['NotiFi'] = "OK";$return_json['NotiFi_m'] = "New FD A/C Created !";$return_json['NotiFi_d'] = "<a href='./Details?no=".$ca["ac_no"]."'>A/C NO- ".$ca["ac_no"]."</a>";}
|
||||
else{$return_json['NotiFi'] = "Error";$return_json['NotiFi_m'] = "Error Creating New Recurring A/C !";$return_json['NotiFi_d'] = "Failed in Secondary Execution";}
|
||||
}else printf("Error: %s.\n", $stmt->error);
|
||||
$stmt->close();
|
||||
|
||||
$conn->close();
|
||||
echo $return_json['NotiFi'],$return_json['NotiFi_m'],$return_json['NotiFi_d'];
|
||||
} //else {$return_json['NotiFi'] = "Error";$return_json['NotiFi_m'] = "Error on input !";$return_json['NotiFi_d'] = "Check Input Details";}
|
||||
//echo json_encode($return_json);
|
||||
?>
|
||||
</div>
|
||||
|
||||
<div class="container">
|
||||
<form method="post" enctype="multipart/form-data" id="new_fd">
|
||||
<input type="hidden" name="ac_type" value="F">
|
||||
<div class="form-group">
|
||||
<input type="text" class="form-control text-capitalize" name="ac_name" placeholder="Name" >
|
||||
<small id="emailHelp" class="form-text text-muted">A/C Holder Name*</small>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<input type="text" class="form-control text-uppercase" name="AA_ICARD_NO" placeholder="I-CARD NO" required>
|
||||
</div>
|
||||
<table><tr>
|
||||
<td><div class="form-group">
|
||||
<input type="text" class="form-control" name="CA_Amount" oninput="cal_FD();">
|
||||
<small id="emailHelp" class="form-text text-muted">Amount*</small>
|
||||
</div></td>
|
||||
<td><div class="form-group">
|
||||
<input type="text" class="form-control" name="CA_interest" value="8">
|
||||
<small id="emailHelp" class="form-text text-muted">interest*</small>
|
||||
</div></td>
|
||||
<td><div class="form-group">
|
||||
<input type="text" class="form-control" name="CA_No_Of_Payment" oninput="cal_FD();cal_FD_md();" >
|
||||
<small id="emailHelp" class="form-text text-muted">Month*</small>
|
||||
</div></td>
|
||||
<td><div class="form-group">
|
||||
<input type="text" class="form-control" name="Mature_Value" id="Mature_Value" value="">
|
||||
<small id="emailHelp" class="form-text text-muted">Mature Value*</small>
|
||||
</div></td>
|
||||
</tr></table>
|
||||
<div class="form-group">
|
||||
<input type="text" class="form-control" id="date_today" name="date_today" value="<?php echo date('Y-m-d');?>" >
|
||||
<small id="emailHelp" class="form-text text-muted">Date*</small>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<input type="text" class="form-control" name="date_mature" >
|
||||
<small id="emailHelp" class="form-text text-muted">Mature Date*</small>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<input type="text" class="form-control" name="ac_phone" placeholder="Phone No">
|
||||
</div>
|
||||
|
||||
|
||||
<div class="form-group">
|
||||
<input type="text" class="form-control" name="ac_mail" placeholder="Email">
|
||||
</div>
|
||||
|
||||
<div class="form-group">
|
||||
<textarea class="form-control text-capitalize" rows="5" name="ac_address" placeholder="Address"></textarea>
|
||||
</div>
|
||||
<hr>
|
||||
<small class="form-text text-muted"><u>Nominee details*</u></small>
|
||||
<div class="form-group">
|
||||
<textarea class="form-control text-capitalize" rows="5" name="AA_NOMINEE_DETAILS" required>Name:
|
||||
DOB:
|
||||
Relation:
|
||||
ID:
|
||||
</textarea>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-lg-4 col-md-4 col-md-offset-5 col-sm-12 col-xs-12">
|
||||
<button type="submit" class="btn btn-primary">Create New FD A/C</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</form>
|
||||
|
||||
|
||||
</div>
|
||||
136
old/CONTENT/ROOT_URI/Admin/Create_AC_Loan.php
Normal file
@@ -0,0 +1,136 @@
|
||||
<div class="container">
|
||||
<?php
|
||||
if(isset($_POST["ac_type"]) && isset($_POST["ac_name"]) && $_POST["ac_name"]!="" && is_numeric($_POST["Mature_Value"]) ) {
|
||||
$return_json['NotiFi'] = "";$return_json['NotiFi_m'] = "";$return_json['NotiFi_d'] = "";
|
||||
$ca["ac_type"]=$_POST["ac_type"];
|
||||
$ca["ac_name"]=$_POST["ac_name"];
|
||||
$ca["ac_phone"]=$_POST["ac_phone"];
|
||||
$ca["ac_mail"]=$_POST["ac_mail"];
|
||||
$ca["ac_address"]=$_POST["ac_address"];
|
||||
$ca["ac_no"]="GV".$_POST["ac_type"].date("Ymd")."L";
|
||||
$AA_BAL=$_POST["Mature_Value"];$AA_BAL=$AA_BAL-($AA_BAL*2);
|
||||
//GC_new_entry($ca);
|
||||
|
||||
|
||||
|
||||
$conn = new mysqli($GLOBALS['host'], $GLOBALS['user'], $GLOBALS['pass'], $GLOBALS['db']);
|
||||
|
||||
if ($conn->connect_error) die("Connection failed: " . $conn->connect_error);
|
||||
|
||||
$t="Loan";
|
||||
$stmt = $conn->prepare("INSERT INTO ".$GLOBALS['arif_ac']." (`AA_BAL`,`AA_G1_DETAILS`,`AA_G2_DETAILS`,`AA_INSTALLMENT`,`AA_ICARD_NO`,`AA_INTEREST`,`AA_DATE`,`AA_DATE_MATURE`,`AA_NO_OF_PAYMENT`,`AA_AMOUNT`,`AA_MATURE_VALUE`,`AA_TYPE`,`AA_ACTYPE`,`AA_NAME`, `AA_PHONE`, `AA_EMAIL`, `AA_ADDRESS`, `AA_ADMIN`) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)");
|
||||
$stmt->bind_param("isssssssssssssssss" ,$AA_BAL,$_POST["AA_G1_DETAILS"],$_POST["AA_G2_DETAILS"],$_POST["CA_installment"],$_POST["AA_ICARD_NO"],$_POST["CA_interest"],$_POST["date_today"],$_POST["date_mature"],$_POST["CA_No_Of_Payment"],$_POST["CA_Amount"],$_POST["Mature_Value"], $t,$ca["ac_type"],$ca["ac_name"],$ca["ac_phone"],$ca["ac_mail"],$ca["ac_address"],$_SESSION["EMAIL"]);
|
||||
|
||||
if($stmt->execute()){
|
||||
$lid=$conn->insert_id;$ca["ac_no"]=$ca["ac_no"].$lid;
|
||||
if($conn->query("UPDATE `".$GLOBALS['arif_ac']."` SET `AA_ACNO` = '".$ca["ac_no"]."' WHERE `AA_ID` =".$lid.";"))
|
||||
{$return_json['NotiFi'] = "OK";$return_json['NotiFi_m'] = "New Loan A/C Created !";$return_json['NotiFi_d'] = "<a href='./Details?no=".$ca["ac_no"]."'>A/C NO- ".$ca["ac_no"]."</a>";}
|
||||
else{$return_json['NotiFi'] = "Error";$return_json['NotiFi_m'] = "Error Creating New Recurring A/C !";$return_json['NotiFi_d'] = "Failed in Secondary Execution";}
|
||||
}
|
||||
$stmt->close();
|
||||
|
||||
$conn->close();
|
||||
echo $return_json['NotiFi'],$return_json['NotiFi_m'],$return_json['NotiFi_d'];
|
||||
} //else {$return_json['NotiFi'] = "Error";$return_json['NotiFi_m'] = "Error on input !";$return_json['NotiFi_d'] = "Check Input Details";}
|
||||
//echo json_encode($return_json);
|
||||
?>
|
||||
</div>
|
||||
|
||||
<div class="container">
|
||||
<form method="post" enctype="multipart/form-data" id="new_loan">
|
||||
<!--<div ng-app="myApp" ng-controller="myCtrl" class="form-group">-->
|
||||
<select class="form-control" name="ac_type" onchange="cal_loan_type();">
|
||||
<option value="D">Day</option>
|
||||
<option value="W">Week</option>
|
||||
<option value="M">Month</option>
|
||||
</select>
|
||||
<small class="form-text text-muted">A/C Type*</small>
|
||||
<!--</div>-->
|
||||
</br>
|
||||
<div class="form-group">
|
||||
<input type="text" class="form-control text-capitalize" name="ac_name" placeholder="Name" >
|
||||
<small class="form-text text-muted">A/C Holder Name*</small>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<input type="text" class="form-control text-uppercase" name="AA_ICARD_NO" placeholder="ICARD No" >
|
||||
<small class="form-text text-muted">A/C Holder's ID No*</small>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<input type="text" class="form-control text-capitalize" name="Father" placeholder="Father" >
|
||||
<small class="form-text text-muted">A/C Holder's Father*</small>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<input type="text" class="form-control" name="ac_phone" placeholder="Phone No">
|
||||
</div>
|
||||
|
||||
<div class="form-group">
|
||||
<input type="text" class="form-control" name="ac_mail" placeholder="Email">
|
||||
</div>
|
||||
|
||||
<div class="form-group">
|
||||
<textarea class="form-control text-capitalize" rows="5" name="ac_address" placeholder="Address"></textarea>
|
||||
</div>
|
||||
<table><tr>
|
||||
<td><div class="form-group">
|
||||
<input type="text" class="form-control" name="CA_Amount" oninput="cal_loan();">
|
||||
<small class="form-text text-muted">Principle Amount*</small>
|
||||
</div></td>
|
||||
<td><div class="form-group">
|
||||
<input type="text" class="form-control" name="CA_interest" value="20" oninput="cal_loan();">
|
||||
<small class="form-text text-muted">interest*</small>
|
||||
</div></td>
|
||||
<td><div class="form-group">
|
||||
<input type="text" class="form-control" name="CA_No_Of_Payment" oninput="cal_loan();cal_Re_md();" >
|
||||
<small class="form-text text-muted">Tenure no of <span id="DWM">Day</span>*</small>
|
||||
</div></td>
|
||||
<td><div class="form-group">
|
||||
<input type="text" class="form-control" name="CA_installment" >
|
||||
<small class="form-text text-muted">installment Amount*</small>
|
||||
</div></td>
|
||||
<td><div class="form-group">
|
||||
<input type="text" class="form-control" name="Mature_Value" >
|
||||
<small class="form-text text-muted">Total Amount*</small>
|
||||
</div></td>
|
||||
</tr></table>
|
||||
<div class="form-group">
|
||||
<input type="text" class="form-control" id="date_today" name="date_today" value="<?php echo date('Y-m-d');?>" >
|
||||
<small id="emailHelp" class="form-text text-muted">Date*</small>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<input type="text" class="form-control" name="date_mature" >
|
||||
<small id="emailHelp" class="form-text text-muted">Mature Date*</small>
|
||||
</div>
|
||||
<hr/>
|
||||
<h4>Guaranter</h4>
|
||||
|
||||
<hr>
|
||||
<small class="form-text text-muted"><u>1st Guaranter details*</u></small>
|
||||
<div class="form-group">
|
||||
<textarea class="form-control text-capitalize" rows="6" name="AA_G1_DETAILS" required>Name:
|
||||
ID:
|
||||
Father:
|
||||
Phone:
|
||||
Relation:
|
||||
Address: </textarea>
|
||||
</div>
|
||||
<hr>
|
||||
<small class="form-text text-muted"><u>2nd Guaranter details*</u></small>
|
||||
<div class="form-group">
|
||||
<textarea class="form-control text-capitalize" rows="6" name="AA_G2_DETAILS" required>Name:
|
||||
ID:
|
||||
Father:
|
||||
Phone:
|
||||
Relation:
|
||||
Address:</textarea>
|
||||
</div>
|
||||
|
||||
<div class="row">
|
||||
<div class="col-lg-4 col-md-4 col-md-offset-5 col-sm-12 col-xs-12">
|
||||
<button type="submit" class="btn btn-primary" >Create New Loan A/C</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</form>
|
||||
|
||||
|
||||
</div>
|
||||
106
old/CONTENT/ROOT_URI/Admin/Create_AC_Recurring.php
Normal file
@@ -0,0 +1,106 @@
|
||||
<div class="container">
|
||||
<?php
|
||||
$start = time();
|
||||
if(isset($_POST["ac_type"]) && isset($_POST["ac_name"]) && $_POST["ac_name"]!="" && is_numeric($_POST["Mature_Value"]) ) {
|
||||
$return_json['NotiFi'] = "";$return_json['NotiFi_m'] = "";$return_json['NotiFi_d'] = "";
|
||||
$ca["ac_type"]=$_POST["ac_type"];
|
||||
$ca["ac_name"]=$_POST["ac_name"];
|
||||
$ca["ac_phone"]=$_POST["ac_phone"];
|
||||
$ca["ac_mail"]=$_POST["ac_mail"];
|
||||
$ca["ac_address"]=$_POST["ac_address"];
|
||||
$ca["ac_no"]="GV".$_POST["ac_type"].date("Ymd")."R";
|
||||
$conn = new mysqli($GLOBALS['host'], $GLOBALS['user'], $GLOBALS['pass'], $GLOBALS['db']);
|
||||
if ($conn->connect_error) die("Connection failed: " . $conn->connect_error);
|
||||
$t="Recurring";
|
||||
$stmt = $conn->prepare("INSERT INTO ".$GLOBALS['arif_ac']." (`AA_INTEREST`,`AA_DATE`,`AA_ICARD_NO`,`AA_DATE_MATURE`,`AA_NO_OF_PAYMENT`,`AA_INSTALLMENT`,`AA_MATURE_VALUE`,`AA_TYPE`,`AA_ACTYPE`,`AA_NAME`, `AA_PHONE`, `AA_EMAIL`, `AA_ADDRESS`, `AA_NOMINEE_DETAILS`, `AA_ADMIN`) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)");
|
||||
$stmt->bind_param("sssssssssssssss" ,$_POST["CA_interest"],$_POST["date_today"],$_POST["AA_ICARD_NO"],$_POST["date_mature"],$_POST["CA_No_Of_Payment"],$_POST["CA_Amount"],$_POST["Mature_Value"], $t,$ca["ac_type"],$ca["ac_name"],$ca["ac_phone"],$ca["ac_mail"],$ca["ac_address"],$_POST["AA_NOMINEE_DETAILS"],$_SESSION["EMAIL"]);
|
||||
if($stmt->execute()){
|
||||
$lid=$conn->insert_id;$ca["ac_no"]=$ca["ac_no"].$lid;
|
||||
if($conn->query("UPDATE `".$GLOBALS['arif_ac']."` SET `AA_ACNO` = '".$ca["ac_no"]."' WHERE `AA_ID` =".$lid.";"))
|
||||
{$return_json['NotiFi'] = "OK";$return_json['NotiFi_m']="New Recurring A/C Created !";$return_json['NotiFi_d'] = "<a href='./Details?no=".$ca["ac_no"]."'>A/C NO- ".$ca["ac_no"]."</a>";}
|
||||
else{$return_json['NotiFi'] = "Error";$return_json['NotiFi_m'] = "Error Creating New Recurring A/C !";$return_json['NotiFi_d'] = "Failed in Secondary Execution";}
|
||||
}
|
||||
$stmt->close();
|
||||
$conn->close();
|
||||
//$e_time= time() - $start; echo $start."<br>".time()."<br>".$e_time."<br>";
|
||||
echo $return_json['NotiFi'],$return_json['NotiFi_m'],$return_json['NotiFi_d'];
|
||||
}// else {$return_json['NotiFi'] = "Error";$return_json['NotiFi_m'] = "Error on input !";$return_json['NotiFi_d'] = "Check Input Details";}
|
||||
?>
|
||||
</div>
|
||||
|
||||
<div class="container">
|
||||
<form method="post" enctype="multipart/form-data" id="New_Recurring">
|
||||
<div class="form-group">
|
||||
<!--<div ng-app="myApp" ng-controller="myCtrl" class="form-group">-->
|
||||
<select class="form-control" name="ac_type">
|
||||
<option value="D">Day</option>
|
||||
<option value="W">Week</option>
|
||||
<option value="M">Month</option>
|
||||
</select>
|
||||
<small class="form-text text-muted">A/C Type*</small>
|
||||
<!--</div>-->
|
||||
</div>
|
||||
<br>
|
||||
<div class="form-group">
|
||||
<input type="text" class="form-control text-capitalize" name="ac_name" placeholder="Name" required>
|
||||
<small class="form-text text-muted">A/C Holder Name*</small>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<input type="text" class="form-control text-uppercase" name="AA_ICARD_NO" placeholder="I-CARD NO" required>
|
||||
</div>
|
||||
<table><tr>
|
||||
<td><div class="form-group">
|
||||
<input type="text" class="form-control" name="CA_Amount" oninput="cal_rec();" required>
|
||||
<small class="form-text text-muted">Amount*</small>
|
||||
</div></td>
|
||||
<td><div class="form-group">
|
||||
<input type="text" class="form-control" name="CA_interest" value="8" oninput="cal_rec();" required>
|
||||
<small class="form-text text-muted">Interest*</small>
|
||||
</div></td>
|
||||
<td><div class="form-group">
|
||||
<input type="text" class="form-control" name="CA_No_Of_Payment" oninput="cal_rec();cal_Re_md();" required>
|
||||
<small class="form-text text-muted">No Of Payment*</small>
|
||||
</div></td>
|
||||
<td><div class="form-group">
|
||||
<input type="text" class="form-control" name="Mature_Value" required>
|
||||
<small class="form-text text-muted">Mature Value*</small>
|
||||
</div></td>
|
||||
</tr></table>
|
||||
<div class="form-group">
|
||||
<input type="text" class="form-control" id="date_today" name="date_today" value="<?php echo date('Y-m-d');?>" required>
|
||||
<small class="form-text text-muted">Date*</small>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<input type="text" class="form-control" name="date_mature" required>
|
||||
<small class="form-text text-muted">Mature Date*</small>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<input type="text" class="form-control" name="ac_phone" placeholder="Phone No" required>
|
||||
</div>
|
||||
|
||||
<div class="form-group">
|
||||
<input type="text" class="form-control" name="ac_mail" placeholder="Email">
|
||||
</div>
|
||||
|
||||
<div class="form-group">
|
||||
<textarea class="form-control text-capitalize" rows="5" name="ac_address" placeholder="Address" required></textarea>
|
||||
</div>
|
||||
<hr>
|
||||
<small class="form-text text-muted"><u>Nominee details*</u></small>
|
||||
<div class="form-group">
|
||||
<textarea class="form-control text-capitalize" rows="5" name="AA_NOMINEE_DETAILS" required>Name:
|
||||
DOB:
|
||||
Relation:
|
||||
ID:
|
||||
</textarea>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-lg-4 col-md-4 col-md-offset-5 col-sm-12 col-xs-12">
|
||||
<button type="submit" class="btn btn-primary" >Create New Recurring A/C</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</form>
|
||||
|
||||
|
||||
</div>
|
||||
247
old/CONTENT/ROOT_URI/Admin/Details.php
Normal file
@@ -0,0 +1,247 @@
|
||||
|
||||
<div class="container" style="text-align: center;">
|
||||
<h3> ACCOUNT DETAILS</h3><hr>
|
||||
</div>
|
||||
|
||||
<div class="container">
|
||||
<table class="table table-striped table-bordered table-hover table-responsive">
|
||||
<?php
|
||||
$conn = new mysqli($GLOBALS['host'], $GLOBALS['user'], $GLOBALS['pass'], $GLOBALS['db']);
|
||||
$conn->set_charset("utf8");
|
||||
if ($conn->connect_error) {
|
||||
die("Connection failed: " . $conn->connect_error);
|
||||
}
|
||||
|
||||
$sql = "SELECT * FROM `".$GLOBALS['arif_ac']."` WHERE `AA_ACNO`= '".$_GET["no"]."'";
|
||||
$result = $conn->query($sql);
|
||||
|
||||
if ($result->num_rows > 0) {
|
||||
while($row = $result->fetch_assoc()) { if($row["AA_ACTYPE"]=="D")$AA_ACTYPE="Day";if($row["AA_ACTYPE"]=="M")$AA_ACTYPE="Month";if($row["AA_ACTYPE"]=="W")$AA_ACTYPE="Week";
|
||||
if ($row["AA_TYPE"]== "FD")
|
||||
echo "
|
||||
<tr><th colspan='2'><span class='text-center'>Fixed Diposite A/C of ".$row["AA_NAME"]. "</span></tr><tr>
|
||||
<tr>
|
||||
<th>ACCOUNT NO.</th>
|
||||
<td>".$row["AA_ACNO"]. "</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>A/C Created</th>
|
||||
<td>".$row["AA_TIMESTAMP"]. "</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>EFFECTIVE DATE</th>
|
||||
<td>".$row["AA_DATE"]. "</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>ACCOUNT HOLDER</th>
|
||||
<td>".$row["AA_NAME"]. "</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>ACCOUNT HOLDER's ID/CARD NO</th>
|
||||
<td>".$row["AA_ICARD_NO"]. "</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>EMAIL ID</th>
|
||||
<td>".$row["AA_EMAIL"]. "</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>PHONE NO.</th>
|
||||
<td>".$row["AA_PHONE"]. "</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>ADDRESS</th>
|
||||
<td>".$row["AA_ADDRESS"]. "</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>ACCOUNT TYPE</th>
|
||||
<td>Fixed Diposite</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>RATE OF INTEREST</th>
|
||||
<td>".$row["AA_INTEREST"]. "</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<th>AMOUNT PAID</th>
|
||||
<td>".$row["AA_AMOUNT"]. "</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<th>MATURITY DATE</th>
|
||||
<td>".$row["AA_DATE_MATURE"]. "</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>NOMINEE DETAILS</th>
|
||||
<td>".$row["AA_NOMINEE_DETAILS"]. "</td>
|
||||
</tr>
|
||||
|
||||
";
|
||||
elseif ($row["AA_TYPE"]== "Recurring")
|
||||
echo "
|
||||
<tr><th colspan='2'><span class='text-center'>Recurring A/C of ".$row["AA_NAME"]. "</span></tr><tr>
|
||||
<tr>
|
||||
<th>ACCOUNT NO.</th>
|
||||
<td>".$row["AA_ACNO"]. "</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>ACCOUNT TYPE</th>
|
||||
<td>".$row["AA_TYPE"]. "</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>PAYMENT TERM</th>
|
||||
<td>".$AA_ACTYPE. "</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>A/C Created</th>
|
||||
<td>".$row["AA_TIMESTAMP"]. "</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>EFFECTIVE DATE</th>
|
||||
<td>".$row["AA_DATE"]. "</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<th>ACCOUNT BALANCE</th>
|
||||
<td>".$row["AA_BAL"]. "</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>ACCOUNT HOLDER</th>
|
||||
<td>".$row["AA_NAME"]. "</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>ID CARD NO</th>
|
||||
<td>".$row["AA_ICARD_NO"]. "</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>EMAIL ID</th>
|
||||
<td>".$row["AA_EMAIL"]. "</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>PHONE NO.</th>
|
||||
<td>".$row["AA_PHONE"]. "</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>ADDRESS</th>
|
||||
<td>".$row["AA_ADDRESS"]. "</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<th>INTEREST</th>
|
||||
<td>".$row["AA_INTEREST"]. "</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>INSTALLMENT AMOUNT</th>
|
||||
<td>".$row["AA_INSTALLMENT"]. "</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>TOTAL NUMBER OF INSTALLMENTS</th>
|
||||
<td>".$row["AA_NO_OF_PAYMENT"]. "</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>NUMBER OF INSTALLMENTS PAID</th>
|
||||
<td>".$row["AA_NO_OF_PAYPAID"]. "</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>MATURITY DATE</th>
|
||||
<td>".$row["AA_DATE_MATURE"]. "</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>MATURITY AMOUNT</th>
|
||||
<td>".$row["AA_MATURE_VALUE"]. "</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>DATE</th>
|
||||
<td>".$row["AA_DATE"]. "</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>NOMINEE DETAILS</th>
|
||||
<td>".$row["AA_NOMINEE_DETAILS"]. "</td>
|
||||
</tr>
|
||||
|
||||
";
|
||||
else
|
||||
echo "
|
||||
<tr><th colspan='2'><span class='text-center'>Loan A/C of ".$row["AA_NAME"]. "</span></tr><tr>
|
||||
<tr>
|
||||
<th>ACCOUNT NO.</th>
|
||||
<td>".$row["AA_ACNO"]. "</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>PAYMENT TERM</th>
|
||||
<td>".$AA_ACTYPE. "</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>ACCOUNT TYPE</th>
|
||||
<td>".$row["AA_TYPE"]. "</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>A/C Created</th>
|
||||
<td>".$row["AA_TIMESTAMP"]. "</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>EFFECTIVE DATE</th>
|
||||
<td>".$row["AA_DATE"]. "</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>ACCOUNT BALANCE</th>
|
||||
<td>".$row["AA_BAL"]. "</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>ACCOUNT HOLDER</th>
|
||||
<td>".$row["AA_NAME"]. "</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>ID CARD NO</th>
|
||||
<td>".$row["AA_ICARD_NO"]. "</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>EMAIL ID</th>
|
||||
<td>".$row["AA_EMAIL"]. "</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>PHONE NO.</th>
|
||||
<td>".$row["AA_PHONE"]. "</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>ADDRESS</th>
|
||||
<td>".$row["AA_ADDRESS"]. "</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>INTEREST</th>
|
||||
<td>".$row["AA_INTEREST"]. "</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>INSTALLMENT AMOUNT</th>
|
||||
<td>".$row["AA_INSTALLMENT"]. "</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>LOAN AMOUNT</th>
|
||||
<td>".$row["AA_AMOUNT"]. "</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>NUMBER OF PAYMENT</th>
|
||||
<td>".$row["AA_NO_OF_PAYMENT"]. "</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>TERM ENDING DATE</th>
|
||||
<td>".$row["AA_DATE_MATURE"]. "</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>1st GUARANTER DETAILS</th>
|
||||
<td>".$row["AA_G1_DETAILS"]. "</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>2nd GUARANTER DETAILS</th>
|
||||
<td>".$row["AA_G2_DETAILS"]. "</td>
|
||||
</tr>
|
||||
|
||||
";
|
||||
}
|
||||
} else {
|
||||
echo "0 results";
|
||||
};
|
||||
$conn->close();
|
||||
?>
|
||||
|
||||
</table>
|
||||
</div>
|
||||
102
old/CONTENT/ROOT_URI/Admin/Report.php
Normal file
@@ -0,0 +1,102 @@
|
||||
<div class="container">
|
||||
<table>
|
||||
<!-- <tr>
|
||||
<td>
|
||||
<form>
|
||||
<input type="date" name="tday">
|
||||
<input type="submit" class="btn-info" value="Daily Report">
|
||||
</form>
|
||||
</td>
|
||||
<td>
|
||||
<form>
|
||||
<input type="date" name="tmonth">
|
||||
<input type="submit" class="btn-info" value="Monthly Report">
|
||||
</form>
|
||||
</td>
|
||||
</tr> -->
|
||||
<tr><td>.</td><td>.</td></tr>
|
||||
<tr>
|
||||
<td colspan="2">
|
||||
<form>
|
||||
<label for="">From </label><input type="date" name="dFrom">
|
||||
<label for="">To </label><input type="date" name="dTo">
|
||||
<input type="submit" class="btn-info" value="Report">
|
||||
</form>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
<?php
|
||||
|
||||
function report_view($type,$dt) {
|
||||
$dateFrom=$dt;
|
||||
|
||||
if($type!="month" || $type!="day") {
|
||||
$dateFrom= strtotime($dt); $dateFrom = date("Y-m-d", $dateFrom);
|
||||
$dateTo= strtotime('+1 day', strtotime($type)); $dateTo = date("Y-m-d", $dateTo);
|
||||
}
|
||||
//$dateFrom=$dt;
|
||||
else{
|
||||
if($type=="month") {$dateFrom= strtotime('-1 day', strtotime($dt)); $dateFrom = date("Y-m-d", $dateFrom);}
|
||||
$dateTo = strtotime('+1 '.$type, strtotime($dt));
|
||||
$dateTo = date("Y-m-d", $dateTo);
|
||||
}
|
||||
echo '<div class="container"> <h3>'.$dateFrom." -> ".$dateTo."(Up to)</h3> </div>";
|
||||
|
||||
$conn = new mysqli($GLOBALS['host'], $GLOBALS['user'], $GLOBALS['pass'], $GLOBALS['db']);
|
||||
if ($conn->connect_error) die("Connection failed: " . $conn->connect_error);
|
||||
|
||||
$totalAmount=0;
|
||||
|
||||
echo '
|
||||
<div class="container" style="margin-top: 70px;">
|
||||
<h5>VIEW REPORT::::::::</h5><hr>
|
||||
</div>
|
||||
<div class="container">
|
||||
<table class="table table-striped table-bordered table-hover table-responsive">
|
||||
<tr>
|
||||
<th>Transaction ID</th>
|
||||
<th>Time</th>
|
||||
<th>AC No</th>
|
||||
<th>Name</th>
|
||||
<th>Amount</th>
|
||||
</tr>';
|
||||
|
||||
|
||||
$sql = "SELECT * FROM `".$GLOBALS['arif_tran']."` INNER JOIN `".$GLOBALS['arif_ac']."` ON `".$GLOBALS['arif_tran']."`.`AT_ACID`=`".$GLOBALS['arif_ac']."`.`AA_ACNO` WHERE `AT_TIMESTAMP` BETWEEN '".$dateFrom." 00:00:00.000000' AND '".$dateTo." 00:00:00.000000' ORDER BY `arif_tran`.`AT_ID` DESC";
|
||||
$result = $conn->query($sql);
|
||||
if ($result->num_rows > 0) {
|
||||
while($row = $result->fetch_assoc()) {
|
||||
//$ID=$row["GC_ID"];
|
||||
// $tt=$row["AT_ID"]-10;
|
||||
echo "
|
||||
<tr>
|
||||
<td>".$row["AT_ID"]. "</td>
|
||||
<td>".$row["AT_TIMESTAMP"]. "</td>
|
||||
<td>".$row["AT_ACID"]. "</td>
|
||||
<td>".$row["AA_NAME"]. "</td>
|
||||
<td>".$row["AT_AMOUNT"]. "</td>
|
||||
</tr>";$totalAmount+=$row["AT_AMOUNT"];
|
||||
}
|
||||
} else {
|
||||
echo "0 results";
|
||||
}
|
||||
$conn->close();
|
||||
|
||||
echo '
|
||||
</table>
|
||||
<hr> <h2> Total Transaction amount : '.$totalAmount.'</h2>
|
||||
</div>
|
||||
';
|
||||
}
|
||||
|
||||
if(isset($_GET['tday']) && $_GET['tday']!="") report_view('day',$_GET['tday']);
|
||||
if(isset($_GET['tmonth']) && $_GET['tmonth']!="") report_view('month',$_GET['tmonth']);
|
||||
if(isset($_GET['dFrom']) && $_GET['dTo']!="") report_view($_GET['dTo'],$_GET['dFrom']);
|
||||
|
||||
//if(isset($_GET['Type']) && $_GET['Type']=="Loan") view_list_ac('Loan');
|
||||
// if(isset($_GET['Type']) && $_GET['Type']=="Recurring") view_list_ac('Recurring');
|
||||
// if(isset($_GET['Type']) && $_GET['Type']=="FD") view_list_ac('FD');
|
||||
?>
|
||||
76
old/CONTENT/ROOT_URI/Admin/Report0.php
Normal file
@@ -0,0 +1,76 @@
|
||||
<div class="container">
|
||||
<form>
|
||||
<input type="date" name="tday">
|
||||
<input type="submit" class="btn-info" value="Daily Report">
|
||||
</form>
|
||||
<form>
|
||||
<input type="date" name="tmonth">
|
||||
<input type="submit" class="btn-info" value="Monthly Report">
|
||||
</form>
|
||||
</div>
|
||||
<?php
|
||||
|
||||
function report_view($type,$dt) {
|
||||
|
||||
// $dateTo=$dt;
|
||||
// $dateFrom = strtotime('-1 '.$type, strtotime($dt));
|
||||
// $dateFrom = date("Y-m-d", $dateFrom);
|
||||
|
||||
$dateFrom=$dt;
|
||||
if($type=="month") {$dateFrom= strtotime('-1 day', strtotime($dt)); $dateFrom = date("Y-m-d", $dateFrom);}
|
||||
$dateTo = strtotime('+1 '.$type, strtotime($dt));
|
||||
$dateTo = date("Y-m-d", $dateTo);
|
||||
echo $dateFrom." -> ".$dateTo."(Up to)";
|
||||
|
||||
$conn = new mysqli($GLOBALS['host'], $GLOBALS['user'], $GLOBALS['pass'], $GLOBALS['db']);
|
||||
if ($conn->connect_error) die("Connection failed: " . $conn->connect_error);
|
||||
|
||||
$totalAmount=0;
|
||||
|
||||
echo '
|
||||
<div class="container" style="margin-top: 70px;">
|
||||
<h5>VIEW REPORT::::::::</h5><hr>
|
||||
</div>
|
||||
<div class="container">
|
||||
<table class="table table-striped table-bordered table-hover table-responsive">
|
||||
<tr>
|
||||
<th>Transaction ID</th>
|
||||
<th>Time</th>
|
||||
<th>AC No</th>
|
||||
<th>Amount</th>
|
||||
</tr>';
|
||||
|
||||
|
||||
$sql = "SELECT * FROM `".$GLOBALS['arif_tran']."` WHERE `AT_TIMESTAMP` BETWEEN '".$dateFrom." 00:00:00.000000' AND '".$dateTo." 00:00:00.000000' ORDER BY `arif_tran`.`AT_ID` DESC";
|
||||
$result = $conn->query($sql);
|
||||
if ($result->num_rows > 0) {
|
||||
while($row = $result->fetch_assoc()) {
|
||||
//$ID=$row["GC_ID"];
|
||||
// $tt=$row["AT_ID"]-10;
|
||||
echo "
|
||||
<tr>
|
||||
<td>".$row["AT_ID"]. "</td>
|
||||
<td>".$row["AT_TIMESTAMP"]. "</td>
|
||||
<td>".$row["AT_ACID"]. "</td>
|
||||
<td>".$row["AT_AMOUNT"]. "</td>
|
||||
</tr>";$totalAmount+=$row["AT_AMOUNT"];
|
||||
}
|
||||
} else {
|
||||
echo "0 results";
|
||||
}
|
||||
$conn->close();
|
||||
|
||||
echo '
|
||||
</table>
|
||||
<hr> <h2> Total Transaction amount : '.$totalAmount.'</h2>
|
||||
</div>
|
||||
';
|
||||
}
|
||||
|
||||
if(isset($_GET['tday']) && $_GET['tday']!="") report_view('day',$_GET['tday']);
|
||||
if(isset($_GET['tmonth']) && $_GET['tmonth']!="") report_view('month',$_GET['tmonth']);
|
||||
|
||||
//if(isset($_GET['Type']) && $_GET['Type']=="Loan") view_list_ac('Loan');
|
||||
// if(isset($_GET['Type']) && $_GET['Type']=="Recurring") view_list_ac('Recurring');
|
||||
// if(isset($_GET['Type']) && $_GET['Type']=="FD") view_list_ac('FD');
|
||||
?>
|
||||
100
old/CONTENT/ROOT_URI/Admin/Report1.php
Normal file
@@ -0,0 +1,100 @@
|
||||
<div class="container">
|
||||
<table>
|
||||
<!-- <tr>
|
||||
<td>
|
||||
<form>
|
||||
<input type="date" name="tday">
|
||||
<input type="submit" class="btn-info" value="Daily Report">
|
||||
</form>
|
||||
</td>
|
||||
<td>
|
||||
<form>
|
||||
<input type="date" name="tmonth">
|
||||
<input type="submit" class="btn-info" value="Monthly Report">
|
||||
</form>
|
||||
</td>
|
||||
</tr> -->
|
||||
<tr><td>.</td><td>.</td></tr>
|
||||
<tr>
|
||||
<td colspan="2">
|
||||
<form>
|
||||
<label for="">From </label><input type="date" name="dFrom">
|
||||
<label for="">To </label><input type="date" name="dTo">
|
||||
<input type="submit" class="btn-info" value="Report">
|
||||
</form>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
<?php
|
||||
|
||||
function report_view($type,$dt) {
|
||||
$dateFrom=$dt;
|
||||
|
||||
if($type!="month" || $type!="day") {
|
||||
$dateFrom= strtotime($dt); $dateFrom = date("Y-m-d", $dateFrom);
|
||||
$dateTo= strtotime('+1 day', strtotime($type)); $dateTo = date("Y-m-d", $dateTo);
|
||||
}
|
||||
//$dateFrom=$dt;
|
||||
else{
|
||||
if($type=="month") {$dateFrom= strtotime('-1 day', strtotime($dt)); $dateFrom = date("Y-m-d", $dateFrom);}
|
||||
$dateTo = strtotime('+1 '.$type, strtotime($dt));
|
||||
$dateTo = date("Y-m-d", $dateTo);
|
||||
}
|
||||
echo $dateFrom." -> ".$dateTo."(Up to)";
|
||||
|
||||
$conn = new mysqli($GLOBALS['host'], $GLOBALS['user'], $GLOBALS['pass'], $GLOBALS['db']);
|
||||
if ($conn->connect_error) die("Connection failed: " . $conn->connect_error);
|
||||
|
||||
$totalAmount=0;
|
||||
|
||||
echo '
|
||||
<div class="container" style="margin-top: 70px;">
|
||||
<h5>VIEW REPORT::::::::</h5><hr>
|
||||
</div>
|
||||
<div class="container">
|
||||
<table class="table table-striped table-bordered table-hover table-responsive">
|
||||
<tr>
|
||||
<th>Transaction ID</th>
|
||||
<th>Time</th>
|
||||
<th>AC No</th>
|
||||
<th>Amount</th>
|
||||
</tr>';
|
||||
|
||||
|
||||
$sql = "SELECT * FROM `".$GLOBALS['arif_tran']."` WHERE `AT_TIMESTAMP` BETWEEN '".$dateFrom." 00:00:00.000000' AND '".$dateTo." 00:00:00.000000' ORDER BY `arif_tran`.`AT_ID` DESC";
|
||||
$result = $conn->query($sql);
|
||||
if ($result->num_rows > 0) {
|
||||
while($row = $result->fetch_assoc()) {
|
||||
//$ID=$row["GC_ID"];
|
||||
// $tt=$row["AT_ID"]-10;
|
||||
echo "
|
||||
<tr>
|
||||
<td>".$row["AT_ID"]. "</td>
|
||||
<td>".$row["AT_TIMESTAMP"]. "</td>
|
||||
<td>".$row["AT_ACID"]. "</td>
|
||||
<td>".$row["AT_AMOUNT"]. "</td>
|
||||
</tr>";$totalAmount+=$row["AT_AMOUNT"];
|
||||
}
|
||||
} else {
|
||||
echo "0 results";
|
||||
}
|
||||
$conn->close();
|
||||
|
||||
echo '
|
||||
</table>
|
||||
<hr> <h2> Total Transaction amount : '.$totalAmount.'</h2>
|
||||
</div>
|
||||
';
|
||||
}
|
||||
|
||||
if(isset($_GET['tday']) && $_GET['tday']!="") report_view('day',$_GET['tday']);
|
||||
if(isset($_GET['tmonth']) && $_GET['tmonth']!="") report_view('month',$_GET['tmonth']);
|
||||
if(isset($_GET['dFrom']) && $_GET['dTo']!="") report_view($_GET['dTo'],$_GET['dFrom']);
|
||||
|
||||
//if(isset($_GET['Type']) && $_GET['Type']=="Loan") view_list_ac('Loan');
|
||||
// if(isset($_GET['Type']) && $_GET['Type']=="Recurring") view_list_ac('Recurring');
|
||||
// if(isset($_GET['Type']) && $_GET['Type']=="FD") view_list_ac('FD');
|
||||
?>
|
||||
5
old/CONTENT/ROOT_URI/Admin/Settings.php
Normal file
@@ -0,0 +1,5 @@
|
||||
<?php
|
||||
echo '<h2>Allowed Users</h2><br>';
|
||||
foreach (glob("CONFIG/*.txt") as $filename) echo substr($filename, 7,-4);
|
||||
echo '<h2>Add a user</h2><br><input type="text" >';
|
||||
?>
|
||||
9
old/CONTENT/ROOT_URI/Admin/Signout.php
Normal file
@@ -0,0 +1,9 @@
|
||||
<?php
|
||||
session_unset();
|
||||
if(isset($_COOKIE['EMAIL'])){
|
||||
header_remove();
|
||||
setcookie('EMAIL', $_POST['EMAIL'], time() - (86400 * 30), "/");
|
||||
echo '<script>window.location.relode();</script>';
|
||||
}
|
||||
else echo '<script>window.location.assign("/Admin/");</script>';
|
||||
?>
|
||||
149
old/CONTENT/ROOT_URI/Admin/Trans_New-0.php
Normal file
@@ -0,0 +1,149 @@
|
||||
<div class="container" style="margin-top: 20px;">
|
||||
<form method="get" action="Trans_New"> <input type="text" placeholder="input A/C no and enter" name="no"></form>
|
||||
</div>
|
||||
|
||||
<?php
|
||||
if(isset($_GET["no"]) && isset($_GET["type"])&&$_GET["type"]=="Loan"){
|
||||
echo '
|
||||
<div class="container" style="margin-top: 20px;"> <h5>New Transaction : '.$GLOBALS['post_info'].' </h5><hr></div>
|
||||
<div class="container">
|
||||
<table class="table table-striped table-bordered table-hover table-responsive">
|
||||
<tr>
|
||||
<th>Name</th>
|
||||
<th>Phone</th>
|
||||
<th>AC No</th>
|
||||
<th>Remaining Amount</th>
|
||||
<th>Installment</th>
|
||||
</tr>
|
||||
';
|
||||
|
||||
$conn = new mysqli($GLOBALS['host'], $GLOBALS['user'], $GLOBALS['pass'], $GLOBALS['db']);
|
||||
if ($conn->connect_error) {
|
||||
die("Connection failed: " . $conn->connect_error);
|
||||
}
|
||||
|
||||
$sql = "SELECT * FROM `".$GLOBALS['arif_ac']."` WHERE `AA_ACNO` = '".$_GET["no"]."' ";
|
||||
$result = $conn->query($sql);
|
||||
|
||||
if ($result->num_rows > 0) {
|
||||
while($row = $result->fetch_assoc()) {
|
||||
//$ID=$row["GC_ID"];
|
||||
echo "
|
||||
<tr>
|
||||
<td>".$row["AA_NAME"]. "</td>
|
||||
<td>".$row["AA_PHONE"]. "</td>
|
||||
<td>".$row["AA_ACNO"]."</td>
|
||||
<td>".$row["AA_BAL"]. '</td>
|
||||
<td>
|
||||
<form method="post" enctype="multipart/form-data">
|
||||
<!--<input type="hidden" name="FORM_NAME" value="add_installment">-->
|
||||
<input type="text" name="add_i" value="'.$row['AA_INSTALLMENT'].'">
|
||||
<input type="hidden" name="AA_ACNO" value="'.$row['AA_ACNO'].'"><input type="submit" class="btn-info" value="Receive"></form>
|
||||
</td>
|
||||
</tr>';
|
||||
}
|
||||
} else {echo "Check A/C no.";};
|
||||
$conn->close();
|
||||
|
||||
echo '
|
||||
</table>
|
||||
</div>
|
||||
';
|
||||
}
|
||||
|
||||
|
||||
if(isset($_GET["no"]) && isset($_GET["type"])&&$_GET["type"]=="Recurring"){
|
||||
echo '
|
||||
<div class="container" style="margin-top: 70px;"> <h5>New Transaction : '.$GLOBALS['post_info'].' </h5><hr></div>
|
||||
<div class="container">
|
||||
<table class="table table-striped table-bordered table-hover table-responsive">
|
||||
<tr>
|
||||
<th>Name</th>
|
||||
<th>Phone</th>
|
||||
<th>AC No</th>
|
||||
<th>Total Deposite</th>
|
||||
<th>Installment</th>
|
||||
</tr>
|
||||
';
|
||||
|
||||
$conn = new mysqli($GLOBALS['host'], $GLOBALS['user'], $GLOBALS['pass'], $GLOBALS['db']);
|
||||
if ($conn->connect_error) {
|
||||
die("Connection failed: " . $conn->connect_error);
|
||||
}
|
||||
|
||||
$sql = "SELECT * FROM `".$GLOBALS['arif_ac']."` WHERE `AA_ACNO` = '".$_GET["no"]."' ";
|
||||
$result = $conn->query($sql);
|
||||
|
||||
if ($result->num_rows > 0) {
|
||||
while($row = $result->fetch_assoc()) {
|
||||
//$ID=$row["GC_ID"];
|
||||
echo "
|
||||
<tr>
|
||||
<td>".$row["AA_NAME"]. "</td>
|
||||
<td>".$row["AA_PHONE"]. "</td>
|
||||
<td>".$row["AA_ACNO"]."</td>
|
||||
<td>".$row["AA_BAL"]. '</td>
|
||||
<td>
|
||||
<form method="post" enctype="multipart/form-data">
|
||||
<input type="hidden" name="FORM_NAME" value="add_installment">
|
||||
<input type="text" name="add_i" value="'.$row['AA_INSTALLMENT'].'">
|
||||
<input type="hidden" name="AA_ACNO" value="'.$row['AA_ACNO'].'"><input type="submit" class="btn-info" value="Receive"></form>
|
||||
</td>
|
||||
</tr>';
|
||||
}
|
||||
} else {echo "Check A/C no.";};
|
||||
$conn->close();
|
||||
|
||||
echo '
|
||||
</table>
|
||||
</div>
|
||||
';
|
||||
}
|
||||
?>
|
||||
|
||||
<div class="container" style="margin-top: 70px;">
|
||||
<h5>Past Transactions::</h5><hr>
|
||||
</div>
|
||||
|
||||
<?php
|
||||
|
||||
if(isset($_GET["no"])){
|
||||
echo '
|
||||
<div class="container">
|
||||
<table class="table table-striped table-bordered table-hover table-responsive">
|
||||
<tr>
|
||||
<th>SL</th>
|
||||
<th>Tr No</th>
|
||||
<th>TimeStamp</th>
|
||||
<th>User</th>
|
||||
<th>A/C No</th>
|
||||
<th>Amount</th>
|
||||
</tr>
|
||||
';
|
||||
$conn = new mysqli($GLOBALS['host'], $GLOBALS['user'], $GLOBALS['pass'], $GLOBALS['db']);
|
||||
if ($conn->connect_error) die("Connection failed: " . $conn->connect_error);
|
||||
$sql = "SELECT * FROM `".$GLOBALS['arif_tran']."` WHERE `AT_ACID` = '".$_GET['no']."'";
|
||||
$result = $conn->query($sql);
|
||||
$i=0;
|
||||
if ($result->num_rows > 0) {
|
||||
while($row = $result->fetch_assoc()) {
|
||||
//$ID=$row["GC_ID"];
|
||||
$i++;
|
||||
echo "
|
||||
<tr>
|
||||
<td>".$i. "</td>
|
||||
<td>".$row["AT_ID"]. "</td>
|
||||
<td>".$row["AT_TIMESTAMP"]. "</td>
|
||||
<td>".$row["AT_USER"]. "</td>
|
||||
<td>".$row["AT_ACID"]. "</td>
|
||||
<td>".$row["AT_AMOUNT"]. "</td>
|
||||
</tr>";
|
||||
}
|
||||
} else echo "No Past record Found";
|
||||
$conn->close();
|
||||
echo '
|
||||
</table>
|
||||
</div>
|
||||
';
|
||||
}
|
||||
?>
|
||||
150
old/CONTENT/ROOT_URI/Admin/Trans_New-1.php
Normal file
@@ -0,0 +1,150 @@
|
||||
<div class="container" style="margin-top: 20px;">
|
||||
<form method="get" action="Trans_New"> <input type="text" placeholder="input A/C no and enter" name="no"></form>
|
||||
</div>
|
||||
|
||||
<?php
|
||||
if(isset($_GET["no"]) && isset($_GET["type"])&&$_GET["type"]=="Loan"){
|
||||
echo '
|
||||
<div class="container" style="margin-top: 20px;"> <h5>New Transaction : '.$GLOBALS['post_info'].' </h5><hr></div>
|
||||
<div class="container">
|
||||
<table class="table table-striped table-bordered table-hover table-responsive">
|
||||
<tr>
|
||||
<th>Name</th>
|
||||
<th>Phone</th>
|
||||
<th>AC No</th>
|
||||
<th>Remaining Amount</th>
|
||||
<th>Installment</th>
|
||||
</tr>
|
||||
';
|
||||
|
||||
$conn = new mysqli($GLOBALS['host'], $GLOBALS['user'], $GLOBALS['pass'], $GLOBALS['db']);
|
||||
if ($conn->connect_error) {
|
||||
die("Connection failed: " . $conn->connect_error);
|
||||
}
|
||||
|
||||
$sql = "SELECT * FROM `".$GLOBALS['arif_ac']."` WHERE `AA_ACNO` = '".$_GET["no"]."' ";
|
||||
$result = $conn->query($sql);
|
||||
|
||||
if ($result->num_rows > 0) {
|
||||
while($row = $result->fetch_assoc()) {
|
||||
//$ID=$row["GC_ID"];
|
||||
echo "
|
||||
<tr>
|
||||
<td>".$row["AA_NAME"]. "</td>
|
||||
<td>".$row["AA_PHONE"]. "</td>
|
||||
<td>".$row["AA_ACNO"]."</td>
|
||||
<td>".$row["AA_BAL"]. '</td>
|
||||
<td>
|
||||
<form method="post" enctype="multipart/form-data">
|
||||
<input type="hidden" name="FORM_NAME" value="add_installment">
|
||||
<input type="text" name="add_i" value="'.$row['AA_INSTALLMENT'].'">
|
||||
<input type="hidden" name="AA_ACNO" value="'.$row['AA_ACNO'].'"><input type="submit" class="btn-info" value="Receive"></form>
|
||||
</td>
|
||||
</tr>';
|
||||
}
|
||||
} else {echo "Check A/C no.";};
|
||||
$conn->close();
|
||||
|
||||
echo '
|
||||
</table>
|
||||
</div>
|
||||
';
|
||||
}
|
||||
|
||||
|
||||
if(isset($_GET["no"]) && isset($_GET["type"])&&$_GET["type"]=="Recurring"){
|
||||
echo '
|
||||
<div class="container" style="margin-top: 70px;"> <h5>New Transaction : '.$GLOBALS['post_info'].' </h5><hr></div>
|
||||
<div class="container">
|
||||
<table class="table table-striped table-bordered table-hover table-responsive">
|
||||
<tr>
|
||||
<th>Name</th>
|
||||
<th>Phone</th>
|
||||
<th>AC No</th>
|
||||
<th>Total Deposite</th>
|
||||
<th>Installment</th>
|
||||
</tr>
|
||||
';
|
||||
|
||||
$conn = new mysqli($GLOBALS['host'], $GLOBALS['user'], $GLOBALS['pass'], $GLOBALS['db']);
|
||||
if ($conn->connect_error) {
|
||||
die("Connection failed: " . $conn->connect_error);
|
||||
}
|
||||
|
||||
$sql = "SELECT * FROM `".$GLOBALS['arif_ac']."` WHERE `AA_ACNO` = '".$_GET["no"]."' ";
|
||||
$result = $conn->query($sql);
|
||||
|
||||
if ($result->num_rows > 0) {
|
||||
while($row = $result->fetch_assoc()) {
|
||||
//$ID=$row["GC_ID"];
|
||||
echo "
|
||||
<tr>
|
||||
<td>".$row["AA_NAME"]. "</td>
|
||||
<td>".$row["AA_PHONE"]. "</td>
|
||||
<td>".$row["AA_ACNO"]."</td>
|
||||
<td>".$row["AA_BAL"]. '</td>
|
||||
<td>
|
||||
<form method="post" enctype="multipart/form-data">
|
||||
<input type="hidden" name="FORM_NAME" value="add_installment">
|
||||
<input type="text" name="add_i" value="'.$row['AA_INSTALLMENT'].'">
|
||||
<input type="hidden" name="AA_ACNO" value="'.$row['AA_ACNO'].'"><input type="submit" class="btn-info" value="Receive"></form>
|
||||
</td>
|
||||
</tr>';
|
||||
}
|
||||
} else {echo "Check A/C no.";};
|
||||
$conn->close();
|
||||
|
||||
echo '
|
||||
</table>
|
||||
</div>
|
||||
';
|
||||
}
|
||||
?>
|
||||
|
||||
<div class="container" style="margin-top: 70px;">
|
||||
<h5>Past Transactions::::</h5><hr>
|
||||
</div>
|
||||
|
||||
<?php
|
||||
|
||||
if(isset($_GET["no"])){
|
||||
echo '
|
||||
<div class="container">
|
||||
<table class="table table-striped table-bordered table-hover table-responsive">
|
||||
<tr>
|
||||
<th>SL</th>
|
||||
<th>Tr No</th>
|
||||
<th>TimeStamp</th>
|
||||
<th>User</th>
|
||||
<th>A/C No</th>
|
||||
<th>Amount</th>
|
||||
</tr>
|
||||
';
|
||||
$conn = new mysqli($GLOBALS['host'], $GLOBALS['user'], $GLOBALS['pass'], $GLOBALS['db']);
|
||||
if ($conn->connect_error) die("Connection failed: " . $conn->connect_error);
|
||||
// $sql = "SELECT * FROM `".$GLOBALS['arif_tran']."` WHERE `AT_ACID` = '".$_GET['no']."'";
|
||||
$sql = "SELECT * FROM `".$GLOBALS['arif_tran']."` WHERE `AT_ACID` = '".$_GET['no']."' ORDER BY `".$GLOBALS['arif_tran']."`.`AT_ID` DESC";
|
||||
$result = $conn->query($sql);
|
||||
$i=0;
|
||||
if ($result->num_rows > 0) {
|
||||
while($row = $result->fetch_assoc()) {
|
||||
//$ID=$row["GC_ID"];
|
||||
$i++;
|
||||
echo "
|
||||
<tr>
|
||||
<td>".$i. "</td>
|
||||
<td>".$row["AT_ID"]. "</td>
|
||||
<td>".$row["AT_TIMESTAMP"]. "</td>
|
||||
<td>".$row["AT_USER"]. "</td>
|
||||
<td>".$row["AT_ACID"]. "</td>
|
||||
<td>".$row["AT_AMOUNT"]. "</td>
|
||||
</tr>";
|
||||
}
|
||||
} else echo "No Past record Found";
|
||||
$conn->close();
|
||||
echo '
|
||||
</table>
|
||||
</div>
|
||||
';
|
||||
}
|
||||
?>
|
||||
152
old/CONTENT/ROOT_URI/Admin/Trans_New-2.php
Normal file
@@ -0,0 +1,152 @@
|
||||
<div class="container" style="margin-top: 20px;">
|
||||
<form method="get" action="Trans_New"> <input type="text" placeholder="input A/C no and enter" name="no"></form>
|
||||
</div>
|
||||
|
||||
<?php
|
||||
if(isset($_GET["no"]) && isset($_GET["type"])&&$_GET["type"]=="Loan"){
|
||||
echo '
|
||||
<div class="container" style="margin-top: 20px;"> <h5>New Transaction : '.$GLOBALS['post_info'].' </h5><hr></div>
|
||||
<div class="container">
|
||||
<table class="table table-striped table-bordered table-hover table-responsive">
|
||||
<tr>
|
||||
<th>Name</th>
|
||||
<th>Phone</th>
|
||||
<th>AC No</th>
|
||||
<th>Remaining Amount</th>
|
||||
<th>Installment</th>
|
||||
</tr>
|
||||
';
|
||||
|
||||
$conn = new mysqli($GLOBALS['host'], $GLOBALS['user'], $GLOBALS['pass'], $GLOBALS['db']);
|
||||
if ($conn->connect_error) {
|
||||
die("Connection failed: " . $conn->connect_error);
|
||||
}
|
||||
|
||||
$sql = "SELECT * FROM `".$GLOBALS['arif_ac']."` WHERE `AA_ACNO` = '".$_GET["no"]."' ";
|
||||
$result = $conn->query($sql);
|
||||
|
||||
if ($result->num_rows > 0) {
|
||||
while($row = $result->fetch_assoc()) {
|
||||
//$ID=$row["GC_ID"];
|
||||
echo "
|
||||
<tr>
|
||||
<td>".$row["AA_NAME"]. "</td>
|
||||
<td>".$row["AA_PHONE"]. "</td>
|
||||
<td>".$row["AA_ACNO"]."</td>
|
||||
<td>".$row["AA_BAL"]. '</td>
|
||||
<td>
|
||||
<form method="post" enctype="multipart/form-data">
|
||||
<input type="hidden" name="FORM_NAME" value="add_installment">
|
||||
<input type="text" name="add_i" value="'.$row['AA_INSTALLMENT'].'">
|
||||
<input type="hidden" name="AA_ACNO" value="'.$row['AA_ACNO'].'"><input type="submit" class="btn-info" value="Receive"></form>
|
||||
</td>
|
||||
</tr>';
|
||||
}
|
||||
} else {echo "Check A/C no.";};
|
||||
$conn->close();
|
||||
|
||||
echo '
|
||||
</table>
|
||||
</div>
|
||||
';
|
||||
}
|
||||
|
||||
|
||||
if(isset($_GET["no"]) && isset($_GET["type"])&&$_GET["type"]=="Recurring"){
|
||||
echo '
|
||||
<div class="container" style="margin-top: 70px;"> <h5>New Transaction : '.$GLOBALS['post_info'].' </h5><hr></div>
|
||||
<div class="container">
|
||||
<table class="table table-striped table-bordered table-hover table-responsive">
|
||||
<tr>
|
||||
<th>Name</th>
|
||||
<th>Phone</th>
|
||||
<th>AC No</th>
|
||||
<th>Total Deposite</th>
|
||||
<th>Installment</th>
|
||||
</tr>
|
||||
';
|
||||
|
||||
$conn = new mysqli($GLOBALS['host'], $GLOBALS['user'], $GLOBALS['pass'], $GLOBALS['db']);
|
||||
if ($conn->connect_error) {
|
||||
die("Connection failed: " . $conn->connect_error);
|
||||
}
|
||||
|
||||
$sql = "SELECT * FROM `".$GLOBALS['arif_ac']."` WHERE `AA_ACNO` = '".$_GET["no"]."' ";
|
||||
$result = $conn->query($sql);
|
||||
|
||||
if ($result->num_rows > 0) {
|
||||
while($row = $result->fetch_assoc()) {
|
||||
//$ID=$row["GC_ID"];
|
||||
echo "
|
||||
<tr>
|
||||
<td>".$row["AA_NAME"]. "</td>
|
||||
<td>".$row["AA_PHONE"]. "</td>
|
||||
<td>".$row["AA_ACNO"]."</td>
|
||||
<td>".$row["AA_BAL"]. '</td>
|
||||
<td>
|
||||
<form method="post" enctype="multipart/form-data">
|
||||
<input type="hidden" name="FORM_NAME" value="add_installment">
|
||||
<input type="text" name="add_i" value="'.$row['AA_INSTALLMENT'].'">
|
||||
<input type="hidden" name="AA_ACNO" value="'.$row['AA_ACNO'].'"><input type="submit" class="btn-info" value="Receive"></form>
|
||||
</td>
|
||||
</tr>';
|
||||
}
|
||||
} else {echo "Check A/C no.";};
|
||||
$conn->close();
|
||||
|
||||
echo '
|
||||
</table>
|
||||
</div>
|
||||
';
|
||||
}
|
||||
?>
|
||||
|
||||
<div class="container" style="margin-top: 70px;">
|
||||
<h5>Past Transactions::::</h5><hr>
|
||||
</div>
|
||||
|
||||
<?php
|
||||
|
||||
if(isset($_GET["no"])){
|
||||
echo '
|
||||
<div class="container">
|
||||
<table class="table table-striped table-bordered table-hover table-responsive">
|
||||
<tr>
|
||||
<th>SL</th>
|
||||
<th>Tr No</th>
|
||||
<th>TimeStamp</th>
|
||||
<th>User</th>
|
||||
<th>A/C No</th>
|
||||
<th>Amount</th>
|
||||
</tr>
|
||||
';
|
||||
$conn = new mysqli($GLOBALS['host'], $GLOBALS['user'], $GLOBALS['pass'], $GLOBALS['db']);
|
||||
if ($conn->connect_error) die("Connection failed: " . $conn->connect_error);
|
||||
// $sql = "SELECT * FROM `".$GLOBALS['arif_tran']."` WHERE `AT_ACID` = '".$_GET['no']."'";
|
||||
$sql = "SELECT * FROM `".$GLOBALS['arif_tran']."` WHERE `AT_ACID` = '".$_GET['no']."' ORDER BY `".$GLOBALS['arif_tran']."`.`AT_ID` DESC";
|
||||
$result = $conn->query($sql);
|
||||
$rowcount=mysqli_num_rows($result);//$rowcount++;
|
||||
|
||||
if ($result->num_rows > 0) {
|
||||
while($row = $result->fetch_assoc()) {
|
||||
//$ID=$row["GC_ID"];
|
||||
|
||||
echo "
|
||||
<tr>
|
||||
<td>".$rowcount. "</td>
|
||||
<td>".$row["AT_ID"]. "</td>
|
||||
<td>".$row["AT_TIMESTAMP"]. "</td>
|
||||
<td>".$row["AT_USER"]. "</td>
|
||||
<td>".$row["AT_ACID"]. "</td>
|
||||
<td>".$row["AT_AMOUNT"]. "</td>
|
||||
</tr>";
|
||||
$rowcount--;
|
||||
}
|
||||
} else echo "No Past record Found";
|
||||
mysqli_free_result($result);$conn->close();
|
||||
echo '
|
||||
</table>
|
||||
</div>
|
||||
';
|
||||
}
|
||||
?>
|
||||
152
old/CONTENT/ROOT_URI/Admin/Trans_New.php
Normal file
@@ -0,0 +1,152 @@
|
||||
<div class="container" style="margin-top: 20px;">
|
||||
<form method="get" action="Trans_New"> <input type="text" placeholder="input A/C no and enter" name="no"></form>
|
||||
</div>
|
||||
|
||||
<?php
|
||||
if(isset($_GET["no"]) && isset($_GET["type"])&&$_GET["type"]=="Loan"){
|
||||
echo '
|
||||
<div class="container" style="margin-top: 20px;"> <h5>New Transaction : '.$GLOBALS['post_info'].' </h5><hr></div>
|
||||
<div class="container">
|
||||
<table class="table table-striped table-bordered table-hover table-responsive">
|
||||
<tr>
|
||||
<th>Name</th>
|
||||
<th>Phone</th>
|
||||
<th>AC No</th>
|
||||
<th>Remaining Amount</th>
|
||||
<th>Installment</th>
|
||||
</tr>
|
||||
';
|
||||
|
||||
$conn = new mysqli($GLOBALS['host'], $GLOBALS['user'], $GLOBALS['pass'], $GLOBALS['db']);
|
||||
if ($conn->connect_error) {
|
||||
die("Connection failed: " . $conn->connect_error);
|
||||
}
|
||||
|
||||
$sql = "SELECT * FROM `".$GLOBALS['arif_ac']."` WHERE `AA_ACNO` = '".$_GET["no"]."' ";
|
||||
$result = $conn->query($sql);
|
||||
|
||||
if ($result->num_rows > 0) {
|
||||
while($row = $result->fetch_assoc()) {
|
||||
//$ID=$row["GC_ID"];
|
||||
echo "
|
||||
<tr>
|
||||
<td>".$row["AA_NAME"]. "</td>
|
||||
<td>".$row["AA_PHONE"]. "</td>
|
||||
<td>".$row["AA_ACNO"]."</td>
|
||||
<td>".$row["AA_BAL"]. '</td>
|
||||
<td>
|
||||
<form method="post" enctype="multipart/form-data">
|
||||
<input type="hidden" name="FORM_NAME" value="add_installment">
|
||||
<input type="text" name="add_i" value="'.$row['AA_INSTALLMENT'].'">
|
||||
<input type="hidden" name="AA_ACNO" value="'.$row['AA_ACNO'].'"><input type="submit" class="btn-info" value="Receive"></form>
|
||||
</td>
|
||||
</tr>';
|
||||
}
|
||||
} else {echo "Check A/C no.";};
|
||||
$conn->close();
|
||||
|
||||
echo '
|
||||
</table>
|
||||
</div>
|
||||
';
|
||||
}
|
||||
|
||||
|
||||
if(isset($_GET["no"]) && isset($_GET["type"])&&$_GET["type"]=="Recurring"){
|
||||
echo '
|
||||
<div class="container" style="margin-top: 70px;"> <h5>New Transaction : '.$GLOBALS['post_info'].' </h5><hr></div>
|
||||
<div class="container">
|
||||
<table class="table table-striped table-bordered table-hover table-responsive">
|
||||
<tr>
|
||||
<th>Name</th>
|
||||
<th>Phone</th>
|
||||
<th>AC No</th>
|
||||
<th>Total Deposite</th>
|
||||
<th>Installment</th>
|
||||
</tr>
|
||||
';
|
||||
|
||||
$conn = new mysqli($GLOBALS['host'], $GLOBALS['user'], $GLOBALS['pass'], $GLOBALS['db']);
|
||||
if ($conn->connect_error) {
|
||||
die("Connection failed: " . $conn->connect_error);
|
||||
}
|
||||
|
||||
$sql = "SELECT * FROM `".$GLOBALS['arif_ac']."` WHERE `AA_ACNO` = '".$_GET["no"]."' ";
|
||||
$result = $conn->query($sql);
|
||||
|
||||
if ($result->num_rows > 0) {
|
||||
while($row = $result->fetch_assoc()) {
|
||||
//$ID=$row["GC_ID"];
|
||||
echo "
|
||||
<tr>
|
||||
<td>".$row["AA_NAME"]. "</td>
|
||||
<td>".$row["AA_PHONE"]. "</td>
|
||||
<td>".$row["AA_ACNO"]."</td>
|
||||
<td>".$row["AA_BAL"]. '</td>
|
||||
<td>
|
||||
<form method="post" enctype="multipart/form-data">
|
||||
<input type="hidden" name="FORM_NAME" value="add_installment">
|
||||
<input type="text" name="add_i" value="'.$row['AA_INSTALLMENT'].'">
|
||||
<input type="hidden" name="AA_ACNO" value="'.$row['AA_ACNO'].'"><input type="submit" class="btn-info" value="Receive"></form>
|
||||
</td>
|
||||
</tr>';
|
||||
}
|
||||
} else {echo "Check A/C no.";};
|
||||
$conn->close();
|
||||
|
||||
echo '
|
||||
</table>
|
||||
</div>
|
||||
';
|
||||
}
|
||||
?>
|
||||
|
||||
<div class="container" style="margin-top: 70px;">
|
||||
<h5>Past Transactions::::</h5><hr>
|
||||
</div>
|
||||
|
||||
<?php
|
||||
|
||||
if(isset($_GET["no"])){
|
||||
echo '
|
||||
<div class="container">
|
||||
<table class="table table-striped table-bordered table-hover table-responsive">
|
||||
<tr>
|
||||
<th>SL</th>
|
||||
<th>Tr No</th>
|
||||
<th>TimeStamp</th>
|
||||
<th>User</th>
|
||||
<th>A/C No</th>
|
||||
<th>Amount</th>
|
||||
</tr>
|
||||
';
|
||||
$conn = new mysqli($GLOBALS['host'], $GLOBALS['user'], $GLOBALS['pass'], $GLOBALS['db']);
|
||||
if ($conn->connect_error) die("Connection failed: " . $conn->connect_error);
|
||||
// $sql = "SELECT * FROM `".$GLOBALS['arif_tran']."` WHERE `AT_ACID` = '".$_GET['no']."'";
|
||||
$sql = "SELECT * FROM `".$GLOBALS['arif_tran']."` WHERE `AT_ACID` = '".$_GET['no']."' ORDER BY `".$GLOBALS['arif_tran']."`.`AT_ID` DESC";
|
||||
$result = $conn->query($sql);
|
||||
$rowcount=mysqli_num_rows($result);//$rowcount++;
|
||||
|
||||
if ($result->num_rows > 0) {
|
||||
while($row = $result->fetch_assoc()) {
|
||||
//$ID=$row["GC_ID"];
|
||||
|
||||
echo "
|
||||
<tr>
|
||||
<td>".$rowcount. "</td>
|
||||
<td>".$row["AT_ID"]. "</td>
|
||||
<td>".$row["AT_TIMESTAMP"]. "</td>
|
||||
<td>".$row["AT_ADMIN"]. "</td>
|
||||
<td>".$row["AT_ACID"]. "</td>
|
||||
<td>".$row["AT_AMOUNT"]. "</td>
|
||||
</tr>";
|
||||
$rowcount--;
|
||||
}
|
||||
} else echo "No Past record Found";
|
||||
mysqli_free_result($result);$conn->close();
|
||||
echo '
|
||||
</table>
|
||||
</div>
|
||||
';
|
||||
}
|
||||
?>
|
||||
66
old/CONTENT/ROOT_URI/Admin/View_AC.php
Normal file
@@ -0,0 +1,66 @@
|
||||
<div class="container" style="background-color:#e0a3a3;padding:8px;">
|
||||
<ul class="nav nav-pills nav-justified">
|
||||
<li <?php if(isset($_GET['Type']) && $_GET['Type']=="FD") echo'class="active"';?>><a href="View_AC?Type=FD">Fixed Deposits</a></li>
|
||||
<li <?php if(isset($_GET['Type']) && $_GET['Type']=="Loan") echo'class="active"';?>><a href="View_AC?Type=Loan">Loan A/C</a></li>
|
||||
<li <?php if(isset($_GET['Type']) && $_GET['Type']=="Recurring") echo'class="active"';?>><a href="View_AC?Type=Recurring">Recurring A/Cs</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<?php
|
||||
function view_list_ac($type) {
|
||||
echo '
|
||||
<div class="container" style="margin-top: 70px;">
|
||||
<h5>VIEW CUSTOMERS</h5><hr>
|
||||
</div>
|
||||
<div class="container">
|
||||
<table class="table table-striped table-bordered table-hover table-responsive">
|
||||
<tr>
|
||||
<th>SL</th>
|
||||
<th>Type</th>
|
||||
<th>AC No</th>
|
||||
<th>Name</th>
|
||||
<th>PHONE</th>
|
||||
<th>Balance</th>
|
||||
</tr>';
|
||||
$conn = new mysqli($GLOBALS['host'], $GLOBALS['user'], $GLOBALS['pass'], $GLOBALS['db']);
|
||||
if ($conn->connect_error) {
|
||||
die("Connection failed: " . $conn->connect_error);
|
||||
}
|
||||
|
||||
$sql = "SELECT * FROM `".$GLOBALS['arif_ac']."` WHERE `AA_TYPE`='".$type."' ORDER BY `AA_ID` DESC";
|
||||
$result = $conn->query($sql);
|
||||
|
||||
if ($result->num_rows > 0) {
|
||||
while($row = $result->fetch_assoc()) {
|
||||
//$ID=$row["GC_ID"];
|
||||
$tt=$row["AA_ID"]-10;
|
||||
echo "
|
||||
<tr>
|
||||
<td>".$tt. "</td>
|
||||
<td>".$row["AA_ACTYPE"].",".$row["AA_TYPE"]. "</td>
|
||||
<td><a href='./Details?no=".$row["AA_ACNO"]."&type=".$row["AA_TYPE"]."'>".$row["AA_ACNO"]."</a> <a href='./Trans_New?no=".$row["AA_ACNO"]."&type=".$row["AA_TYPE"]."'>Transact</a></td>
|
||||
<td>".$row["AA_NAME"]. "</td>
|
||||
<td>".$row["AA_PHONE"]. "</td>
|
||||
<td>".$row["AA_BAL"]. "</td>
|
||||
</tr>";
|
||||
}
|
||||
} else {
|
||||
echo "0 results";
|
||||
};
|
||||
$conn->close();
|
||||
|
||||
echo '
|
||||
</table>
|
||||
</div>
|
||||
';
|
||||
}
|
||||
|
||||
|
||||
if(isset($_GET['Type']) && $_GET['Type']=="Loan") view_list_ac('Loan');
|
||||
if(isset($_GET['Type']) && $_GET['Type']=="Recurring") view_list_ac('Recurring');
|
||||
if(isset($_GET['Type']) && $_GET['Type']=="FD") view_list_ac('FD');
|
||||
?>
|
||||
|
||||
|
||||
|
||||
1
old/CONTENT/ROOT_URI/Admin/home.php
Normal file
@@ -0,0 +1 @@
|
||||
admin panel home
|
||||
23
old/CONTENT/ROOT_URI/Admin/index.php
Normal file
@@ -0,0 +1,23 @@
|
||||
<?php
|
||||
$lnk2 = explode('?', $lnk);
|
||||
include("ADMIN_HEADER.php");//print file_get_contents('http://www.example.com/');var_dump(gethostbyaddr($_SERVER['HTTP_REFERER']));// echo $lnk."c";
|
||||
|
||||
/*
|
||||
echo $_SERVER['HTTP_USER_AGENT'] . "\n\n";
|
||||
$browser = get_browser(null, true);
|
||||
print_r($browser);echo $_SERVER['HTTP_REFERER'];*/
|
||||
include("ADMIN_nav.php");
|
||||
|
||||
if(isset($_SESSION['EMAIL']) || isset($_COOKIE['EMAIL']) ){
|
||||
//include("ADMIN_nav.php");
|
||||
echo "<br>";
|
||||
if($lnk=="") include("home.php");
|
||||
elseif(file_exists(__DIR__."/".$lnk.".php")) include($lnk.".php");
|
||||
elseif(isset($lnk2[1]) && file_exists(__DIR__."/".$lnk2[0].".php") ) include($lnk2[0].".php");
|
||||
else include("404.php");
|
||||
}else echo '<center>
|
||||
<h2>Provide Details to login</h2> <a href="https://siliconpin.com/id/auth"><button class="btn btn-default">Login</button></a> </center>';
|
||||
|
||||
include("ADMIN_FOOTER.php");
|
||||
|
||||
?>
|
||||
58
old/CONTENT/ROOT_URI/Admin/new-bn.php
Normal file
@@ -0,0 +1,58 @@
|
||||
<div class="container">
|
||||
<?php echo $GLOBALS['alert_info'] ?>
|
||||
</div>
|
||||
<div class="container">
|
||||
<form method="post" enctype="multipart/form-data">
|
||||
<input type="hidden" name="FORM_NAME" value="new_news_entry">
|
||||
<input type="hidden" name="lang" value="BN">
|
||||
<div ng-app="myApp" ng-controller="myCtrl" class="form-group">
|
||||
<select class="form-control" name="news_category"><option ng-repeat="x in names">{{x}}</option></select>
|
||||
</select>
|
||||
</div>
|
||||
<script>
|
||||
var app = angular.module('myApp', []);
|
||||
app.controller('myCtrl', function($scope) {
|
||||
$scope.names = [<?php include APP_DIR."/CONTENT/VARIABLES/news_type_list_en.php";?>];
|
||||
});
|
||||
</script>
|
||||
|
||||
<div class="form-group">
|
||||
<input type="text" class="form-control" name="news_link" placeholder="Meta/Link for this news entry">
|
||||
<small id="emailHelp" class="form-text text-muted">Alphanumeric(A-Z,a-z,0-9).</small>
|
||||
</div>
|
||||
|
||||
<div class="form-group">
|
||||
<input type="text" class="form-control" name="news_title" placeholder="Title for this new">
|
||||
</div>
|
||||
|
||||
|
||||
<div class="form-group">
|
||||
<textarea class="form-control" rows="5" name="news_content" placeholder="News content text"></textarea>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-lg-4 col-md-4 col-sm-12 col-xs-12">
|
||||
<label class="btn btn-default btn-file">
|
||||
<input name="photo_news" type="file" >
|
||||
</label>
|
||||
<!-- Multiple upload not needed for now! <div class="fileinput fileinput-new" data-provides="fileinput">
|
||||
<span class="btn btn-default btn-file"><span></span><input type="file" multiple /></span>
|
||||
<span class="fileinput-filename"></span><span class="fileinput-new"></span>
|
||||
</div>-->
|
||||
</div>
|
||||
<div class="col-lg-4 col-md-4 col-sm-12 col-xs-12">
|
||||
<div class="form-check">
|
||||
<label class="form-check-label">
|
||||
<input type="checkbox" class="form-check-input">
|
||||
Check me out
|
||||
</label>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-4 col-md-4 col-sm-12 col-xs-12">
|
||||
<button type="submit" class="btn btn-primary">Submit</button>
|
||||
</div>
|
||||
</div>
|
||||
<!--<div class="row">
|
||||
<iframe width="100%" height="350" src="https://www.youtube.com/embed/UXJTvnf-meU" frameborder="0" allowfullscreen></iframe>
|
||||
</div>-->
|
||||
</form>
|
||||
</div>
|
||||
57
old/CONTENT/ROOT_URI/Admin/new-en.php
Normal file
@@ -0,0 +1,57 @@
|
||||
<div class="container">
|
||||
<?php echo $GLOBALS['alert_info'] ?>
|
||||
</div>
|
||||
<div class="container">
|
||||
<form method="post" enctype="multipart/form-data">
|
||||
<input type="hidden" name="FORM_NAME" value="new_news_entry">
|
||||
<input type="hidden" name="lang" value="EN">
|
||||
<div ng-app="myApp" ng-controller="myCtrl" class="form-group">
|
||||
<select class="form-control" name="news_category"><option ng-repeat="x in names">{{x}}</option></select>
|
||||
</div>
|
||||
<script>
|
||||
var app = angular.module('myApp', []);
|
||||
app.controller('myCtrl', function($scope) {
|
||||
$scope.names = [<?php include APP_DIR."/CONTENT/VARIABLES/news_type_list_en.php";?>];
|
||||
});
|
||||
</script>
|
||||
|
||||
<div class="form-group">
|
||||
<input type="text" class="form-control" name="news_link" placeholder="Meta/Link for this news entry">
|
||||
<small id="emailHelp" class="form-text text-muted">Alphanumeric(A-Z,a-z,0-9).</small>
|
||||
</div>
|
||||
|
||||
<div class="form-group">
|
||||
<input type="text" class="form-control" name="news_title" placeholder="Title for this new">
|
||||
</div>
|
||||
|
||||
|
||||
<div class="form-group">
|
||||
<textarea class="form-control" rows="5" name="news_content" placeholder="News content text"></textarea>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-lg-4 col-md-4 col-sm-12 col-xs-12">
|
||||
<label class="btn btn-default btn-file">
|
||||
<input name="photo_news" type="file" >
|
||||
</label>
|
||||
<!-- Multiple upload not needed for now! <div class="fileinput fileinput-new" data-provides="fileinput">
|
||||
<span class="btn btn-default btn-file"><span></span><input type="file" multiple /></span>
|
||||
<span class="fileinput-filename"></span><span class="fileinput-new"></span>
|
||||
</div>-->
|
||||
</div>
|
||||
<div class="col-lg-4 col-md-4 col-sm-12 col-xs-12">
|
||||
<div class="form-check">
|
||||
<label class="form-check-label">
|
||||
<input type="checkbox" class="form-check-input">
|
||||
Check me out
|
||||
</label>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-4 col-md-4 col-sm-12 col-xs-12">
|
||||
<button type="submit" class="btn btn-primary">Submit</button>
|
||||
</div>
|
||||
</div>
|
||||
<!--<div class="row">
|
||||
<iframe width="100%" height="350" src="https://www.youtube.com/embed/UXJTvnf-meU" frameborder="0" allowfullscreen></iframe>
|
||||
</div>-->
|
||||
</form>
|
||||
</div>
|
||||
11
old/CONTENT/ROOT_URI/Admin/test.php
Normal file
@@ -0,0 +1,11 @@
|
||||
|
||||
<?php echo $_POST["name"]; ?><br>
|
||||
<?php echo $_POST["email"]; ?>
|
||||
|
||||
<div class="container">
|
||||
<form method="POST">
|
||||
<input type="text" name="name" placeholder="name" class="frist"/>
|
||||
<input type="text" name="email" placeholder="email"/>
|
||||
<input type="submit" value="submit" />
|
||||
</form>
|
||||
</div>
|
||||
3
old/CONTENT/ROOT_URI/Admin/view-bn.php
Normal file
@@ -0,0 +1,3 @@
|
||||
<div class="container">
|
||||
|
||||
</div>
|
||||
129
old/CONTENT/ROOT_URI/Admin/view-en.php
Normal file
@@ -0,0 +1,129 @@
|
||||
<script>
|
||||
function update_pri(id) {
|
||||
var idn='pri'+id;
|
||||
if (id.length == 0) {
|
||||
alert("Input Error!");
|
||||
return;
|
||||
} else {
|
||||
var pri=document.getElementById(idn).value;
|
||||
document.getElementById(idn).disabled = true;
|
||||
var xmlhttp = new XMLHttpRequest();
|
||||
xmlhttp.onreadystatechange = function() {
|
||||
if (this.readyState == 4 && this.status == 200) {
|
||||
document.getElementById(idn).disabled = false;
|
||||
document.getElementById(idn).value = this.responseText;
|
||||
}
|
||||
};
|
||||
xmlhttp.open("GET", "/execute.php?id=" + id + "&pri="+pri, true);
|
||||
xmlhttp.send();
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<script>
|
||||
function switch_state(id) {
|
||||
var idn='act'+id;
|
||||
if (id.length == 0) {
|
||||
alert("Input Error!");
|
||||
return;
|
||||
} else {
|
||||
var active=document.getElementById(idn).value;
|
||||
document.getElementById(idn).disabled = true;
|
||||
console.log(idn);
|
||||
var xmlhttp = new XMLHttpRequest();
|
||||
xmlhttp.onreadystatechange = function() {
|
||||
if (this.readyState == 4 && this.status == 200) {
|
||||
document.getElementById(idn).disabled = false;
|
||||
document.getElementById(idn).value = this.responseText;
|
||||
}
|
||||
};
|
||||
xmlhttp.open("GET", "/execute2.php?id=" + id + "&active="+active, true);
|
||||
xmlhttp.send();
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<div class="container table-responsive">
|
||||
<table class="table table-striped table-bordered table-hover">
|
||||
<tr>
|
||||
<th>ID</th>
|
||||
<th>TITLE</th>
|
||||
<th>DATE</th>
|
||||
<th>CATEGORY</th>
|
||||
<th>PRIORITY</th>
|
||||
<th>STATE</th>
|
||||
</tr>
|
||||
<?php
|
||||
$conn = new mysqli($GLOBALS['host'], $GLOBALS['user'], $GLOBALS['pass'], $GLOBALS['db']);
|
||||
$conn->set_charset("utf8");
|
||||
if ($conn->connect_error) {
|
||||
die("Connection failed: " . $conn->connect_error);
|
||||
}
|
||||
|
||||
$sql = "SELECT * FROM ".$GLOBALS['table1'];
|
||||
$result = $conn->query($sql);
|
||||
|
||||
if ($result->num_rows > 0) {
|
||||
while($row = $result->fetch_assoc()) {
|
||||
//echo "id: " . $row["N_TITLE"]. " - Name: " . $row["N_DATE"]. " " . $row["N_CATEGORY"]." " . $row["pri"]. "<br>";
|
||||
$ID=$row["id"];
|
||||
echo "
|
||||
<tr>
|
||||
<td>" . $ID. "</td>
|
||||
<td>" . $row["N_TITLE"]. "</td>
|
||||
<td>" . $row["N_DATE"]. "</td>
|
||||
<td>" . $row["N_CATEGORY"]. "</td>
|
||||
<td>
|
||||
<form method='post'>
|
||||
<input type='number' name='pri' id='pri" .$ID. "' value='" . $row["pri"]. "'>
|
||||
<input type='hidden' name='id' value='" .$ID. "'>
|
||||
<input class='btn btn-success' type='button' name='priority' value='SAVE' onclick='update_pri(" .'"'.$ID.'"'. ")'>
|
||||
</form>
|
||||
</td>
|
||||
<td>
|
||||
<select name='state' id='act" .$ID. "' onchange='switch_state(" .'"'.$ID.'"'. ")' >
|
||||
<option>".$row['ACTIVE']."</option>
|
||||
<option>0</option>
|
||||
<option>1</option>
|
||||
</select>
|
||||
</td>
|
||||
</tr>";
|
||||
}
|
||||
} else {
|
||||
echo "0 results";
|
||||
};
|
||||
$conn->close();
|
||||
?>
|
||||
<?php
|
||||
if(isset($_POST['priority']) && $_POST['priority']=='SUBMIT')
|
||||
{
|
||||
|
||||
$conn = new mysqli($GLOBALS['host'], $GLOBALS['user'], $GLOBALS['pass'], $GLOBALS['db']);
|
||||
if ($conn->connect_error) {
|
||||
die("Connection failed: " . $conn->connect_error);
|
||||
}
|
||||
|
||||
$sql = "UPDATE `".$GLOBALS["table1"]."` SET `pri` = '".$_POST['pri']."' WHERE `news`.`id` =".$_POST['id'];
|
||||
$result = $conn->query($sql);
|
||||
if(!$result) echo mysqli_error(); else echo "Successfully Updated! <br />";
|
||||
$conn->close();
|
||||
}
|
||||
?>
|
||||
|
||||
<?php
|
||||
if(isset($_POST['statebtn']) && $_POST['statebtn']=='SUBMIT')
|
||||
{
|
||||
|
||||
$conn = new mysqli($GLOBALS['host'], $GLOBALS['user'], $GLOBALS['pass'], $GLOBALS['db']);
|
||||
if ($conn->connect_error) {
|
||||
die("Connection failed: " . $conn->connect_error);
|
||||
}
|
||||
|
||||
$sql = "UPDATE `".$GLOBALS["table1"]."` SET `ACTIVE` = '".$_POST['active']."' WHERE `news`.`id` =".$_POST['id'];
|
||||
$result = $conn->query($sql);
|
||||
if(!$result) echo mysqli_error(); else echo "Successfully Updated! <br />";
|
||||
$conn->close();
|
||||
}
|
||||
?>
|
||||
</table>
|
||||
</div>
|
||||
85
old/CONTENT/ROOT_URI/banner-top.php
Normal file
@@ -0,0 +1,85 @@
|
||||
<section class="banner-top">
|
||||
<div class="container">
|
||||
<div class="banner">
|
||||
<div class="row">
|
||||
<div class="col-lg-8 col-md-8 col-sm-12 col-xs-12">
|
||||
<div class="lt-block">
|
||||
<div id="myCarousel" class="carousel slide" data-ride="carousel">
|
||||
<!-- Indicators -->
|
||||
<ol class="carousel-indicators">
|
||||
<li data-target="#myCarousel" data-slide-to="0" class="active"></li>
|
||||
<li data-target="#myCarousel" data-slide-to="1"></li>
|
||||
<li data-target="#myCarousel" data-slide-to="2"></li>
|
||||
</ol>
|
||||
|
||||
<!-- Wrapper for slides -->
|
||||
<div class="carousel-inner">
|
||||
<div class="item active">
|
||||
<img src="/CONTENT/THEME/images/banner-img1.jpg" alt="Chicago">
|
||||
</div>
|
||||
|
||||
<div class="item">
|
||||
<img src="/CONTENT/THEME/images/banner-img1.jpg" alt="Chicago">
|
||||
</div>
|
||||
|
||||
<div class="item">
|
||||
<img src="/CONTENT/THEME/images/banner-img1.jpg" alt="Chicago">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Left and right controls -->
|
||||
<a class="left carousel-control" href="#myCarousel" data-slide="prev">
|
||||
<span class="glyphicon glyphicon-chevron-left"></span>
|
||||
<span class="sr-only">Previous</span>
|
||||
</a>
|
||||
<a class="right carousel-control" href="#myCarousel" data-slide="next">
|
||||
<span class="glyphicon glyphicon-chevron-right"></span>
|
||||
<span class="sr-only">Next</span>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-4 col-md-4 col-sm-12 col-xs-12">
|
||||
<div class="rt-block">
|
||||
<div id="frist" class="carousel slide" data-ride="carousel">
|
||||
<!-- Indicators -->
|
||||
<!--<ol class="carousel-indicators">
|
||||
<li data-target="#myCarousel1" data-slide-to="0" class="active"></li>
|
||||
<li data-target="#myCarousel2" data-slide-to="1"></li>
|
||||
<li data-target="#myCarousel3" data-slide-to="2"></li>
|
||||
</ol>-->
|
||||
|
||||
<!-- Wrapper for slides -->
|
||||
<div class="carousel-inner">
|
||||
<div class="item active">
|
||||
<img src="/CONTENT/THEME/images/banner-img.jpg" alt="Chicago">
|
||||
</div>
|
||||
|
||||
<div class="item">
|
||||
<img src="/CONTENT/THEME/images/banner-img.jpg" alt="Chicago">
|
||||
</div>
|
||||
|
||||
<div class="item">
|
||||
<img src="/CONTENT/THEME/images/banner-img.jpg" alt="Chicago">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Left and right controls -->
|
||||
<a class="left carousel-control" href="#frist" data-slide="prev">
|
||||
<span class="glyphicon glyphicon-chevron-left"></span>
|
||||
<span class="sr-only">Previous</span>
|
||||
</a>
|
||||
<a class="right carousel-control" href="#frist" data-slide="next">
|
||||
<span class="glyphicon glyphicon-chevron-right"></span>
|
||||
<span class="sr-only">Next</span>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="rt-block bottom">
|
||||
<img src="/CONTENT/THEME/images/banner-img1.jpg" alt="Chicago">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
219
old/CONTENT/ROOT_URI/bottom.php
Normal file
@@ -0,0 +1,219 @@
|
||||
<section class="bottom">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-lg-6 col-md-6 col-sm-12 col-xs-12">
|
||||
<div class="top-news">
|
||||
<div class="border">
|
||||
<h4>Top news</h4>
|
||||
</div>
|
||||
<marquee direction="up" scrollamount="2" behavior="alternate" onmouseover="this.stop();"
|
||||
onmouseout="this.start();" height="715px">
|
||||
|
||||
<?php echo newsPandT('EN','','', '10');
|
||||
?>
|
||||
|
||||
</marquee>
|
||||
</div>
|
||||
|
||||
<div class="top-news gallery">
|
||||
<div class="border">
|
||||
<h4>Gallery</h4>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-lg-4 col-md-4 col-sm-12 col-xs-12">
|
||||
<div class="box">
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="col-lg-4 col-md-4 col-sm-12 col-xs-12">
|
||||
<div class="box">
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="col-lg-4 col-md-4 col-sm-12 col-xs-12">
|
||||
<div class="box">
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="top-news news">
|
||||
<div class="border">
|
||||
<h4>Breaking News</h4>
|
||||
</div>
|
||||
<marquee direction="up" scrollamount="1" behavior="alternate" onmouseover="this.stop();"
|
||||
onmouseout="this.start();" height="715px">
|
||||
<div class="row">
|
||||
<div class="col-lg-4 col-md-4 col-sm-12 col-xs-12">
|
||||
<div class="lt-block">
|
||||
<img src="/CONTENT/THEME/images/banner-img1.jpg" alt="pic"/>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-8 col-md-8 col-sm-12 col-xs-12">
|
||||
<div class="rt-block">
|
||||
<p>Will consult States on bringing petro products into GST:
|
||||
Narendra Modi</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<hr/>
|
||||
<div class="row">
|
||||
<div class="col-lg-4 col-md-4 col-sm-12 col-xs-12">
|
||||
<div class="lt-block">
|
||||
<img src="/CONTENT/THEME/images/banner-img1.jpg" alt="pic"/>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-8 col-md-8 col-sm-12 col-xs-12">
|
||||
<div class="rt-block">
|
||||
<p>Will consult States on bringing petro products into GST:
|
||||
Narendra Modi</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<hr/>
|
||||
<div class="row">
|
||||
<div class="col-lg-4 col-md-4 col-sm-12 col-xs-12">
|
||||
<div class="lt-block">
|
||||
<img src="/CONTENT/THEME/images/banner-img1.jpg" alt="pic"/>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-8 col-md-8 col-sm-12 col-xs-12">
|
||||
<div class="rt-block">
|
||||
<p>Will consult States on bringing petro products into GST:
|
||||
Narendra Modi</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<hr/>
|
||||
<div class="row">
|
||||
<div class="col-lg-4 col-md-4 col-sm-12 col-xs-12">
|
||||
<div class="lt-block">
|
||||
<img src="/CONTENT/THEME/images/banner-img1.jpg" alt="pic"/>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-8 col-md-8 col-sm-12 col-xs-12">
|
||||
<div class="rt-block">
|
||||
<p>Will consult States on bringing petro products into GST:
|
||||
Narendra Modi</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<hr/>
|
||||
<div class="row">
|
||||
<div class="col-lg-4 col-md-4 col-sm-12 col-xs-12">
|
||||
<div class="lt-block">
|
||||
<img src="/CONTENT/THEME/images/banner-img1.jpg" alt="pic"/>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-8 col-md-8 col-sm-12 col-xs-12">
|
||||
<div class="rt-block">
|
||||
<p>Will consult States on bringing petro products into GST:
|
||||
Narendra Modi</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<hr/>
|
||||
</marquee>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="col-lg-3 col-md-3 col-sm-12 col-xs-12">
|
||||
<div class="videos">
|
||||
<div class="border">
|
||||
</div>
|
||||
<div class="border">
|
||||
</div>
|
||||
<div class="border">
|
||||
<h4>VIDEOS</h4>
|
||||
</div>
|
||||
</div>
|
||||
<div class="videos new-posts">
|
||||
<div class="border">
|
||||
</div>
|
||||
<div class="border">
|
||||
</div>
|
||||
<div class="border">
|
||||
<h4>NEW POSTS</h4>
|
||||
</div>
|
||||
<h5>The unintended consequences of GST</h5>
|
||||
<img src="/CONTENT/THEME/images/banner-img1.jpg" alt"pic"/>
|
||||
<h6><i class="fa fa-calendar"></i> 2017-10-01 12:57:34
|
||||
<i class="fa fa-comments"></i> 1,200</h6>
|
||||
<p>It has wreaked havoc on the informal sector. Do we have a plan to deal with this?</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-3 col-md-3 col-sm-12 col-xs-12">
|
||||
<div class="search">
|
||||
<div class="border">
|
||||
</div>
|
||||
<div class="border">
|
||||
</div>
|
||||
<div class="border">
|
||||
<h4>search</h4>
|
||||
</div>
|
||||
<from>
|
||||
<input type="text" name="Enter Search Keywords" placeholder="Enter Search Keywords"
|
||||
class="control">
|
||||
</from>
|
||||
<div class="box">
|
||||
<div class="border1">
|
||||
</div>
|
||||
<div class="border1">
|
||||
</div>
|
||||
<div class="border1">
|
||||
<h5>RECENT NEWS</h5>
|
||||
</div>
|
||||
<marquee direction="up" scrollamount="2" behavior="alternate" onmouseover="this.stop();"
|
||||
onmouseout="this.start();" height="px">
|
||||
<div class="text">
|
||||
<p>Cricket: India Women to play ICC Championship opener against
|
||||
S.A in February</p>
|
||||
|
||||
<p>Cricket: India Women to play ICC Championship opener against
|
||||
S.A in February</p>
|
||||
|
||||
<p>Cricket: India Women to play ICC Championship opener against
|
||||
S.A in February</p>
|
||||
|
||||
<p>Cricket: India Women to play ICC Championship opener against
|
||||
S.A in February</p>
|
||||
|
||||
<p>Cricket: India Women to play ICC Championship opener against
|
||||
S.A in February</p>
|
||||
</div>
|
||||
</marquee>
|
||||
</div>
|
||||
</div>
|
||||
<div class="search calendar">
|
||||
<div class="border">
|
||||
</div>
|
||||
<div class="border">
|
||||
</div>
|
||||
<div class="border">
|
||||
<h4>CALENDAR</h4>
|
||||
</div>
|
||||
</div>
|
||||
<div class="search tweet">
|
||||
<div class="border">
|
||||
</div>
|
||||
<div class="border">
|
||||
</div>
|
||||
<div class="border">
|
||||
<h4>TWEET</h4>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
15
old/CONTENT/ROOT_URI/footer-bottom.php
Normal file
@@ -0,0 +1,15 @@
|
||||
<section class="footer-bottom">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-lg-12">
|
||||
<div class="text-center">
|
||||
<p>copy right <?php echo date("Y");?></p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
||||
87
old/CONTENT/ROOT_URI/footer.php
Normal file
@@ -0,0 +1,87 @@
|
||||
<section class="footer">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-lg-4 col-md-4 col-sm-12 col-xs-12 ">
|
||||
<div class="NEWSPAPER">
|
||||
<h4>NEWSPAPER</h4>
|
||||
<p>Never missed any post published in our site. Subscribe
|
||||
to our daly newsletter now.</p>
|
||||
<h5>Email address:</h5>
|
||||
<from>
|
||||
<input type="text" name="Email" placeholder="your Email" />
|
||||
<input type="submit" value="SUBSCRIBE" class="btn">
|
||||
</from>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-4 col-md-4 col-sm-12 col-xs-12 ">
|
||||
<div class="tags">
|
||||
<h4>Tags</h4>
|
||||
<ul>
|
||||
<li><a href="#">National</a></li>
|
||||
<li><a href="#">Opinion</a></li>
|
||||
<li><a href="#">Business</a></li>
|
||||
<li><a href="#">Entertainment</a></li>
|
||||
<li><a href="#">Economics</a></li>
|
||||
<li><a href="#">agri form</a></li>
|
||||
<li><a href="#">Sports</a></li>
|
||||
<li><a href="#">Cricket</a></li>
|
||||
<li><a href="#">Football</a></li>
|
||||
<li><a href="#">Hockey</a></li>
|
||||
<li><a href="#">International</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-4 col-md-4 col-sm-12 col-xs-12 ">
|
||||
<div class="Recent-News">
|
||||
<h4>Recent News</h4>
|
||||
<marquee direction="up" scrollamount="2.50" behavior="alternate" onmouseover="this.stop();"
|
||||
onmouseout="this.start();" height="250px">
|
||||
<div class="text">
|
||||
<a href="#">Banaras Hindu University (BHU) vice chancellor Girish Chandra
|
||||
Tripathi,who is being blamed for last month’s violence and
|
||||
baton-charge on protesting girl students in the campus, has gone
|
||||
on leave, citing personal reasons.</a>
|
||||
<hr/>
|
||||
<a href="#">Boat carrying Rohingya refugees from Myanmar capsizes off Bangladesh</a>
|
||||
<hr/>
|
||||
<a href="#">Boat carrying Rohingya refugees from Myanmar capsizes off Bangladesh</a>
|
||||
<hr/>
|
||||
<a href="#">Boat carrying Rohingya refugees from Myanmar capsizes off Bangladesh</a>
|
||||
<hr/>
|
||||
<a href="#">Boat carrying Rohingya refugees from Myanmar capsizes off Bangladesh</a>
|
||||
<hr/>
|
||||
<a href="#">Boat carrying Rohingya refugees from Myanmar capsizes off Bangladesh</a>
|
||||
<hr/>
|
||||
<a href="#">Boat carrying Rohingya refugees from Myanmar capsizes off Bangladesh</a>
|
||||
<hr/>
|
||||
<a href="#">Boat carrying Rohingya refugees from Myanmar capsizes off Bangladesh</a>
|
||||
<hr/>
|
||||
</div>
|
||||
</marquee>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
262
old/CONTENT/ROOT_URI/header.php
Normal file
@@ -0,0 +1,262 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>Bengal Live</title>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link rel="stylesheet" href="/CONTENT/THEME/css/bootstrap.min.css">
|
||||
<link rel="stylesheet" href="/CONTENT/THEME/font-awesome/css/font-awesome.min.css">
|
||||
<script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
|
||||
<script src="/CONTENT/THEME/js/bootstrap.min.js"></script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<style>
|
||||
/*css for structure -start*/
|
||||
/*CSS FOR NAV BAR START */
|
||||
body {padding:0 ; background: rgba(73,135,189,1);
|
||||
background: -moz-linear-gradient(left, rgba(73,135,189,1) 0%, rgba(73,135,189,1) 0%, rgba(73,135,189,1) 1%, rgba(163,240,230,1) 80%);
|
||||
background: -webkit-gradient(left top, right top, color-stop(0%, rgba(73,135,189,1)), color-stop(0%, rgba(73,135,189,1)), color-stop(1%, rgba(73,135,189,1)), color-stop(80%, rgba(163,240,230,1)));
|
||||
background: -webkit-linear-gradient(left, rgba(73,135,189,1) 0%, rgba(73,135,189,1) 0%, rgba(73,135,189,1) 1%, rgba(163,240,230,1) 80%);
|
||||
background: -o-linear-gradient(left, rgba(73,135,189,1) 0%, rgba(73,135,189,1) 0%, rgba(73,135,189,1) 1%, rgba(163,240,230,1) 80%);
|
||||
background: -ms-linear-gradient(left, rgba(73,135,189,1) 0%, rgba(73,135,189,1) 0%, rgba(73,135,189,1) 1%, rgba(163,240,230,1) 80%);
|
||||
background: linear-gradient(to right, rgba(73,135,189,1) 0%, rgba(73,135,189,1) 0%, rgba(73,135,189,1) 1%, rgba(163,240,230,1) 80%);
|
||||
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4987bd', endColorstr='#a3f0e6', GradientType=1 );
|
||||
}
|
||||
|
||||
|
||||
/* Remove the navbar's default margin-bottom and rounded borders */
|
||||
.navbar {
|
||||
margin-bottom: 0;
|
||||
border-radius: 0;
|
||||
}
|
||||
/* Set height of the grid so .sidenav can be 100% (adjust as needed) */
|
||||
.row.content {height: 450px}
|
||||
/* Set gray background color and 100% height */
|
||||
.sidenav {
|
||||
padding-top: 20px;
|
||||
background-color: #f1f1f1;
|
||||
height: 100%;
|
||||
}
|
||||
/* Set black background color, white text and some padding */
|
||||
footer {
|
||||
background-color: #555;
|
||||
color: white;
|
||||
padding: 15px;
|
||||
}
|
||||
/* On small screens, set height to 'auto' for sidenav and grid */
|
||||
@media screen and (max-width: 767px) {
|
||||
.sidenav {
|
||||
height: auto;
|
||||
padding: 15px;
|
||||
}
|
||||
.row.content {height:auto;}
|
||||
}
|
||||
.box{ padding:0 0 0 0; margin:20px 0 0 0; }
|
||||
.box .navbar-default{ background:#252628; padding: 0; margin: 0; }
|
||||
.box .navbar-default .navbar-nav > li > a { color: #fff; transition:ease-out 1s; padding: 17px 17px; }
|
||||
.box .navbar-default .navbar-nav > li > a:hover{ color: #000; background: #fff; padding: 17px 17px; }
|
||||
.box .navbar-default .navbar-collapse .navbar-nav .active a.frist{ background: #000;
|
||||
color:#7DC314; padding: 17px 17px; }
|
||||
.box .navbar-default .navbar-collapse .navbar-right{ background:#505052; margin:0 0 0 0; }
|
||||
.navbar { border:none; }
|
||||
.navbar-default .navbar-collapse .navbar-nav .active a.frist:hover{color: #fff; transition:ease-out 1s; }
|
||||
.navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:focus,
|
||||
.navbar-default .navbar-nav > .active > a:hover { color: #fff; }
|
||||
.navbar-collapse { padding: 0; }
|
||||
|
||||
/*CSS FOR NAV BAR END */
|
||||
|
||||
/*css for section start*/
|
||||
.top{ background:#fff; padding: 0; margin: 0; }
|
||||
.top .lt-block{ background:0; padding:20px 0 20px 0; margin: 0; }
|
||||
.top .lt-block h4{ font-family:'arial'; font-size:20px; color:#000; line-height:22px;
|
||||
font-weight:500; padding:0; margin:0; }
|
||||
.top .rt-block{ background:0; text-align:right; padding:20px 0 20px 0; margin: 0; }
|
||||
.top .rt-block ul{ list-style:none; padding:0; margin:0; }
|
||||
.top .rt-block ul li{ display:inline-block; font-family:'arial'; font-size:16px; color:#000;
|
||||
line-height:18px; font-weight:400; padding:0 0 0 7px; margin:0; }
|
||||
.top .rt-block ul li a{ text-decoration:none; color:#000; padding:0 0 0 0; transition: 1s ease; }
|
||||
.top .rt-block ul li a:hover{ color:#7DC314; }
|
||||
.top .rt-block ul li span{ padding:0 7px 0 0; }
|
||||
|
||||
/*css for section start*/
|
||||
|
||||
/*css for section-banner-top- start*/
|
||||
.banner-top { background:#; padding:0; margin:0; }
|
||||
.banner-top .banner { background-color:#fff; padding: 20px; margin: 20px 0 0 0; }
|
||||
.banner-top .banner .lt-block { background-color:#000; padding: 0; min-height:400px;
|
||||
margin: 0; box-sizing: border-box; }
|
||||
.banner-top .banner .rt-block { background-color:#000; padding: 0; min-height:200px;
|
||||
margin: 0; box-sizing: border-box; }
|
||||
.banner-top .banner .rt-block img{ width:100%; height:100%; }
|
||||
.banner-top .banner .bottom { background-color:red; padding: 0; min-height:200px;
|
||||
margin: 30px 0 0 0; box-sizing: border-box; }
|
||||
.banner-top .banner .bottom img { width:100%; min-height:100%; }
|
||||
|
||||
/*css for section-banner-top-end*/
|
||||
|
||||
|
||||
/*css for section-bottom-start*/
|
||||
.bottom { background:#; padding:0; margin:0; }
|
||||
/*for the bottom-top-news-start*/
|
||||
.bottom .top-news{ background-color:#fff; padding:15px; margin:30px 0 0 0; }
|
||||
.bottom .top-news .border{ background:#000; padding:5px 0 5px 0; margin:0 0 20px 0; position: relative; }
|
||||
.bottom .top-news .border h4{ font-family:0; font-size:25px; color:#000; line-height:27px; font-weight:600;
|
||||
background:#fff; display:inline-block; padding:0 15px 0 15px; margin:0 0 0 15px;
|
||||
position: absolute ; left:0; bottom:-7px; }
|
||||
.bottom .top-news .lt-block{ padding:0; margin:0; }
|
||||
.bottom .top-news .lt-block img{ width:100%; padding:0; margin:0; }
|
||||
.bottom .top-news .rt-block{ padding:0; margin:0; }
|
||||
.bottom .top-news .rt-block p{ font-family:0; font-size:16px; color:#000; line-height:18px;
|
||||
font-weight:400; padding:0; margin:0; }
|
||||
/*for the bottom-top-news-end*/
|
||||
|
||||
/*for the bottom-gallery-start*/
|
||||
.bottom .gallery{ background-color:#fff; min-height: 300px; padding:15px; margin:0;
|
||||
box-sizing: border-box; }
|
||||
.bottom .gallery .border{ background:#000; padding:5px 0 5px 0; margin:0 0 20px 0;
|
||||
position: relative; }
|
||||
.bottom .gallery .border h4{ font-family:0; font-size:25px; color:#000; line-height:27px;
|
||||
font-weight:600;
|
||||
background:#fff; display:inline-block; padding:0 15px 0 15px; margin:0 0 0 15px;
|
||||
position: absolute ; left:0; bottom:-7px; }
|
||||
.bottom .gallery .box{ background-color:#000; min-height: 200px; padding:0 ; margin:0; }
|
||||
/*for the bottom-gallery-end*/
|
||||
|
||||
/*for the bottom-news-start*/
|
||||
.bottom .news{ background-color:#fff; padding:15px; margin:0; }
|
||||
.bottom .news .border{ background:green; padding:5px 0 5px 0; margin:0 0 20px 0; position: relative; }
|
||||
.bottom .news .border h4{ font-family:0; font-size:25px; color:#000; line-height:27px; font-weight:600;
|
||||
background:#fff; display:inline-block; padding:0 15px 0 15px; margin:0 0 0 15px;
|
||||
position: absolute ; left:0; bottom:-7px; }
|
||||
.bottom .news .lt-block{ padding:0; margin:0; }
|
||||
.bottom .news .lt-block img{ width:100%; padding:0; margin:0; }
|
||||
.bottom .news .rt-block{ padding:0; margin:0; }
|
||||
.bottom .news .rt-block p{ font-family:0; font-size:16px; color:#000; line-height:18px;
|
||||
font-weight:400; padding:0; margin:0; }
|
||||
/*for the bottom-news-end*/
|
||||
|
||||
/*for the bottom-videos-start*/
|
||||
.bottom .videos{ background-color:#fff; min-height: 400px; padding:20px 15px 0 15px; margin:30px 0 0 0; }
|
||||
.bottom .videos .border{ border-top:1px solid #000; padding:0px 0 1px 0; margin:0; position: relative; }
|
||||
.bottom .videos .border h4{ font-family:0; font-size:25px; color:#000; line-height:27px; font-weight:600;
|
||||
background:#fff; display:inline-block; padding:0 15px 0 15px; margin:0 0 0 15px;
|
||||
position: absolute ; left:0; bottom:-9px; }
|
||||
|
||||
|
||||
/*for the bottom-videos-end*/
|
||||
|
||||
|
||||
/*for the bottom-new-posts-start*/
|
||||
.bottom .new-posts { background-color:#fff; min-height: 400px; padding:20px 15px 0 15px; margin:0; }
|
||||
.bottom .new-posts img{ width:100%; }
|
||||
.bottom .new-posts .border{ border-top:1px solid #000; padding:0px 0 1px 0; margin:0; position: relative; }
|
||||
.bottom .new-posts .border h4{ font-family:0; font-size:25px; color:#000; line-height:27px;
|
||||
font-weight:600; background:#fff; display:inline-block; padding:0 15px 0 15px; margin:0 0 0 15px;
|
||||
position: absolute ; left:0; bottom:-9px; }
|
||||
.bottom .new-posts h5{ font-family:0; font-size:15px; color:#000; line-height:17px; font-weight:400;
|
||||
padding:20px 0 15px 0; margin:0; }
|
||||
.bottom .new-posts h6{ font-family:0; font-size:15px; color:#000; line-height:17px; font-weight:400;
|
||||
padding:10px 0 10px 0; margin:0; }
|
||||
.bottom .new-posts p{ font-family:0; font-size:15px; color:#000; line-height:17px; font-weight:400;
|
||||
padding:0; margin:0; }
|
||||
/*for the bottom-new-posts-end*/
|
||||
|
||||
/*for the bottom-search-start*/
|
||||
.bottom .search{ background-color:#fff; min-height: 400px; padding:15px; margin:30px 0 0 0; }
|
||||
.bottom .search .border{border-top:1px solid #000; padding:0px 0 1px 0; margin:0; position:relative;}
|
||||
.bottom .search .border h4{ font-family:0; font-size:25px; color:#000; line-height:27px;
|
||||
font-weight:600; background:#fff; display:inline-block; padding:0 15px 0 15px; margin:0 0 0 15px;
|
||||
position: absolute ; left:0; bottom:-9px; }
|
||||
.bottom .search .control { width:100%; background:#ccc; height:40px;border:1px solid #4444;
|
||||
font-size:14px; color:#fff; line-height:18px; font-weight:400; padding:0 12px 0 12px;
|
||||
box-sizing:border-box; margin:20px 0 20px 0; border-radius:5px; }
|
||||
.bottom .search .box { border-bottom:1px solid #000; }
|
||||
.bottom .search .box .border1{ border-top:1px solid #000; padding:0px 0 1px 0; margin:0;
|
||||
position:relative;}
|
||||
.bottom .search .box .border1 h5{ font-family:0; font-size:18px; color:#000; line-height:20px;
|
||||
font-weight:600; background:#fff; display:inline-block; padding:0 15px 0 15px; margin:0 0 0 15px;
|
||||
position: absolute ; left:0; bottom:-7px; z-index:9; }
|
||||
.bottom .search .box .text{ padding:0; margin:20px 0 0 0; }
|
||||
/*for the bottom-search-end*/
|
||||
|
||||
/*.bottom .search .keyword{background-color:#04510f; min-height: 100px; padding:0 ; margin:0 0 30px 0; }
|
||||
.bottom .search .RECENT-NEWS{ background-color:#92e59e; min-height: 200px; padding:0 ; margin:0; }
|
||||
.bottom .search .CATEGORY{ background-color:#000; min-height: 100px; padding:0 ; margin:0; }*/
|
||||
|
||||
/*for the bottom-calendar-start*/
|
||||
.bottom .calendar{ background-color:#fff; min-height:300px; padding:15px; margin:0; }
|
||||
.bottom .calendar .border{border-top:1px solid #000; padding:0px 0 1px 0; margin:0; position:relative;}
|
||||
.bottom .calendar h4{ font-family:0; font-size:25px; color:#000; line-height:27px;
|
||||
font-weight:600; background:#fff; display:inline-block; padding:0 15px 0 15px; margin:0 0 0 15px;
|
||||
position: absolute ; left:0; bottom:-9px; }
|
||||
/*for the bottom-calendar-end*/
|
||||
|
||||
/*for the bottom-TWEET-start*/
|
||||
.bottom .tweet{ background-color:#fff; min-height:300px; padding:15px; margin:0; }
|
||||
.bottom .tweet .border{border-top:1px solid #000; padding:0px 0 1px 0; margin:0; position:relative;}
|
||||
.bottom .tweet .border h4{ font-family:0; font-size:25px; color:#000; line-height:27px;
|
||||
font-weight:600; background:#fff; display:inline-block; padding:0 15px 0 15px; margin:0 0 0 15px;
|
||||
position: absolute ; left:0; bottom:-9px; }
|
||||
/*for the bottom-TWEET-end*/
|
||||
|
||||
/*css for section-bottom-end*/
|
||||
|
||||
/*css for section-footer-start*/
|
||||
|
||||
/*css for section-footer-NEWSPAPER-START*/
|
||||
.footer{ background:#202020; padding: 30px 0 30px 0; margin: 0; }
|
||||
.footer .NEWSPAPER{ background: #; padding: 15px; margin: 0; }
|
||||
.footer .NEWSPAPER h4{ font-family:0; font-size:35px; color:#fff; line-height:37px;
|
||||
font-weight:600; padding:0 0 10px 0; margin:0; }
|
||||
.footer .NEWSPAPER p{ font-family:0; font-size:16px; color:#fff; line-height:20px;
|
||||
font-weight:400; padding:0 0 13px 0; margin:0; border-bottom:1px solid #444444;}
|
||||
.footer .NEWSPAPER h5{ font-family:0; font-size:18px; color:#fff; line-height:20px;
|
||||
font-weight:400; padding:13px 0 10px 0; margin:0; }
|
||||
.footer .NEWSPAPER input[type="text"]{ width:100%; background:none; border:1px solid #444444; height:40px;
|
||||
font-family:#; font-size:14px; color:#fff; line-height:18px; font-weight:400; padding:0 12px 0 12px;
|
||||
box-sizing:border-box; margin:0 0 10px 0; }
|
||||
.footer .NEWSPAPER .btn{ background:#444444; font-family:#; font-size:14px; color:#FADA1A; line-height:18px;
|
||||
font-weight:600; padding:12px 15px; margin:0; transition:1s ease; }
|
||||
.footer .NEWSPAPER .btn:hover{ background:#fff; color:#000; transition:1s ease; }
|
||||
/*css for section-footer-NEWSPAPER-end*/
|
||||
|
||||
/*css for section-footer-TAGS-start*/
|
||||
.footer .tags{ padding:15PX; margin:0; }
|
||||
.footer .tags h4{ font-family:0; font-size:35px; color:#FFF; line-height:37px;
|
||||
font-weight:600; padding:0 0 10px 0; margin:0; }
|
||||
.footer .tags ul{ padding:7px 0 0 0; margin:0; }
|
||||
.footer .tags ul li{ display:inline-block; list-style:none; border:1px solid #ccc;
|
||||
font-family:#; font-size:14px; color:#fff; line-height:16px; font-weight:400; padding:5px 7px;
|
||||
margin:0 0px 5px 0; }
|
||||
.footer .tags ul li a{ text-decoration:none; color:#fff; transition:1s ease; }
|
||||
.footer .tags ul li a:hover{ color:#7DC314; transition:1s ease; }
|
||||
/*css for section-footer-TAGS-end*/
|
||||
|
||||
/*css for section-footer-Recent-News-start*/
|
||||
.footer .Recent-News { padding:15px; margin:0; }
|
||||
.footer .Recent-News h4 { font-family:0; font-size:35px; color:#FFF; line-height:37px;
|
||||
font-weight:600; padding:0 0 10px 0; margin:0; }
|
||||
.footer .Recent-News .text{ padding:0; margin:0; }
|
||||
.footer .Recent-News .text a{ text-decoration:none; font-family:#; font-size:15px; color:#fff;
|
||||
line-height:24px; font-weight:400; padding:0; margin:0; }
|
||||
|
||||
/*css for section-footer-Recent-News-end*/
|
||||
|
||||
/*css for section-footer-end*/
|
||||
|
||||
/*css for section-footer-bottom-start*/
|
||||
.footer-bottom{ background:#202020; border-top:1px solid #4444; padding: 20px 0 20px 0; margin:0; }
|
||||
.footer-bottom .text-center{ padding:0; margin:0; }
|
||||
.footer-bottom .text-center p{ font-family:#; font-size:15px; color:#fff;
|
||||
line-height:17px; font-weight:400; padding:0; margin:0; }
|
||||
/*css for section-footer-end*/
|
||||
/*css for structure -end*/
|
||||
</style>
|
||||
|
||||
</head>
|
||||
29
old/CONTENT/ROOT_URI/index.php
Normal file
@@ -0,0 +1,29 @@
|
||||
<?php
|
||||
echo "Website for Gramin Venture will be live soon";
|
||||
exit();
|
||||
$lnk2 = explode('?', $lnk);
|
||||
include("ADMIN_HEADER.php");//print file_get_contents('http://www.example.com/');var_dump(gethostbyaddr($_SERVER['HTTP_REFERER']));// echo $lnk."c";
|
||||
if(!isset($_COOKIE)) {
|
||||
//echo "Cookie named '" . $cookie_name . "' is not set!";
|
||||
} else {
|
||||
//echo "Value is: " . $_COOKIE["cookie_name"];
|
||||
var_dump($_COOKIE);
|
||||
}/*
|
||||
echo $_SERVER['HTTP_USER_AGENT'] . "\n\n";
|
||||
$browser = get_browser(null, true);
|
||||
print_r($browser);echo $_SERVER['HTTP_REFERER'];*/
|
||||
include("ADMIN_nav.php");
|
||||
|
||||
if(isset($_SESSION['EMAIL'])){
|
||||
//include("ADMIN_nav.php");
|
||||
echo "<br>";
|
||||
if($lnk=="") include("home.php");
|
||||
elseif(file_exists(__DIR__."/".$lnk.".php")) include($lnk.".php");
|
||||
elseif(isset($lnk2[1]) && file_exists(__DIR__."/".$lnk2[0].".php") ) include($lnk2[0].".php");
|
||||
else include("404.php");
|
||||
}else echo '<center>
|
||||
<h2>Provide Details to login</h2> <a href="https://siliconpin.com/id/auth"><button class="btn btn-default">Login</button></a> </center>';
|
||||
|
||||
include("ADMIN_FOOTER.php");
|
||||
|
||||
?>
|
||||
34
old/CONTENT/ROOT_URI/navbar.php
Normal file
@@ -0,0 +1,34 @@
|
||||
<section class="box">
|
||||
<div class="container">
|
||||
<nav class="navbar navbar-default">
|
||||
<div class="navbar-header">
|
||||
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#myNavbar">
|
||||
<span class="icon-bar"></span>
|
||||
<span class="icon-bar"></span>
|
||||
<span class="icon-bar"></span>
|
||||
</button>
|
||||
<!-- <a class="navbar-brand" href="#">Logo</a>-->
|
||||
</div>
|
||||
<div class="collapse navbar-collapse" id="myNavbar">
|
||||
<ul class="nav navbar-nav">
|
||||
<li class="active"><a class="frist" href="#">Newspaper</a></li>
|
||||
<li><a href="#">Home</a></li>
|
||||
<li><a href="#">National</a></li>
|
||||
<li><a href="#">Opinion</a></li>
|
||||
<li><a href="#">Business</a></li>
|
||||
<li><a href="#">Entertainment</a></li>
|
||||
<li><a href="#">Sports</a></li>
|
||||
<li><a href="#">International</a></li>
|
||||
</ul>
|
||||
<ul class="nav navbar-nav navbar-right">
|
||||
<!-- <li><a href="#"><span class="glyphicon glyphicon-log-in"></span> <i class="fa fa-facebook" aria-hidden="true">
|
||||
</i> </a></li>-->
|
||||
<li><a href="#"><i class="fa fa-facebook" aria-hidden="true"></i></a></li>
|
||||
<li><a href="#"><i class="fa fa-twitter" aria-hidden="true"></i></a></li>
|
||||
<li><a href="#"><i class="fa fa-google-plus" aria-hidden="true"></i></a></li>
|
||||
<li><a href="#"><i class="fa fa-youtube" aria-hidden="true"></i></a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</nav>
|
||||
</div>
|
||||
</section>
|
||||
25
old/CONTENT/ROOT_URI/top.php
Normal file
@@ -0,0 +1,25 @@
|
||||
<section class="top">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-lg-6 col-md-6 col-sm-12 col-xs-12">
|
||||
<div class="lt-block">
|
||||
<h4>Welcome to bengallive !</h4>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<div class="col-lg-6 col-md-6 col-sm-12 col-xs-12">
|
||||
<div class="rt-block">
|
||||
<ul>
|
||||
<li><span><i class="fa fa-home" aria-hidden="true"></i></span><a href="#">Home</a></li>
|
||||
<li><span><i class="fa fa-comments" aria-hidden="true"></i></span>/
|
||||
<a href="#">Contact</a></li>
|
||||
<li><span><i class="fa fa-question-circle" aria-hidden="true"></i></span>/
|
||||
<a href="#">FAQ</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="claer"></div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
1
old/CONTENT/THEME/404.php
Normal file
@@ -0,0 +1 @@
|
||||
404 error code! not found
|
||||
8
old/CONTENT/THEME/ASSETS/CSS/material.grey-pink.min.css
vendored
Normal file
172
old/CONTENT/THEME/ASSETS/CSS/styles.css
Normal file
@@ -0,0 +1,172 @@
|
||||
.portfolio-header {
|
||||
position: relative;
|
||||
/*background-size:100% auto;
|
||||
background-repeat: no-repeat;*/
|
||||
background-image: url(/Diz/THEME/IMJ/images/header-bg.jpg);
|
||||
}
|
||||
|
||||
.portfolio-header .mdl-layout__header-row {
|
||||
padding: 0;
|
||||
-webkit-justify-content: center;
|
||||
-ms-flex-pack: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.mdl-layout__title {
|
||||
font-size: 14px;
|
||||
text-align: center;
|
||||
font-weight: 300;
|
||||
}
|
||||
|
||||
.is-compact .mdl-layout__title span {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.portfolio-logo-row {
|
||||
min-height: 200px;
|
||||
}
|
||||
|
||||
.is-compact .portfolio-logo-row {
|
||||
min-height: auto;
|
||||
}
|
||||
|
||||
.portfolio-logo {
|
||||
background: url(/Diz/THEME/IMJ/images/logo.png) 50% no-repeat;
|
||||
background-size: cover;
|
||||
height: 150px;
|
||||
width: 150px;
|
||||
margin: auto auto 10px;
|
||||
}
|
||||
|
||||
.is-compact .portfolio-logo {
|
||||
height: 50px;
|
||||
width: 50px;
|
||||
margin-top: 7px;
|
||||
}
|
||||
|
||||
.portfolio-navigation-row {
|
||||
background-color: rgba(0, 0, 0, 0.08);
|
||||
text-transform: uppercase;
|
||||
height: 45px;
|
||||
}
|
||||
|
||||
.portfolio-navigation-row .mdl-navigation {
|
||||
text-align: center;
|
||||
max-width: 900px;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.portfolio-navigation-row .mdl-navigation__link {
|
||||
-webkit-flex: 1;
|
||||
-ms-flex: 1;
|
||||
flex: 1;
|
||||
line-height: 42px;
|
||||
}
|
||||
|
||||
.portfolio-header .mdl-layout__drawer-button {
|
||||
background-color: rgba(197, 197, 197, 0.44);
|
||||
}
|
||||
|
||||
.portfolio-navigation-row .is-active {
|
||||
position: relative;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.portfolio-navigation-row .is-active:after {
|
||||
content: "";
|
||||
width: 70%;
|
||||
height: 2px;
|
||||
display: block;
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
background-color: rgb(255,64,129);
|
||||
left: 15%;
|
||||
}
|
||||
|
||||
.portfolio-card .mdl-card__title {
|
||||
padding-bottom: 0;
|
||||
}
|
||||
|
||||
.portfolio-blog-card-full-bg {
|
||||
background: url(images/example-blog03.jpg) center / cover;
|
||||
}
|
||||
|
||||
.portfolio-blog-card-event-bg {
|
||||
background: url(images/example-blog05.jpg) center / cover;
|
||||
}
|
||||
|
||||
.portfolio-blog-card-strip-bg {
|
||||
background: url(images/example-blog06.jpg) center / cover;
|
||||
}
|
||||
|
||||
.portfolio-blog-card-compact .mdl-card__title {
|
||||
padding-bottom: 0;
|
||||
}
|
||||
|
||||
.portfolio-blog-card-bg > .mdl-card__actions {
|
||||
height: 52px;
|
||||
padding: 16px;
|
||||
background: rgba(0, 0, 0, 0.2);
|
||||
}
|
||||
|
||||
img.article-image {
|
||||
width: 100%;
|
||||
height: auto;
|
||||
}
|
||||
|
||||
.portfolio-max-width {
|
||||
max-width: 900px;
|
||||
margin: auto;
|
||||
}
|
||||
|
||||
.portfolio-copy {
|
||||
max-width: 700px;
|
||||
}
|
||||
|
||||
.no-padding {
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.no-left-padding{
|
||||
padding-left: 0;
|
||||
}
|
||||
|
||||
.no-bottom-padding {
|
||||
padding-bottom: 0;
|
||||
}
|
||||
|
||||
.padding-top {
|
||||
padding: 10px 0 0;
|
||||
}
|
||||
|
||||
.portfolio-share-btn {
|
||||
position: relative;
|
||||
float: right;
|
||||
top: -4px;
|
||||
}
|
||||
|
||||
.demo-card-event > .mdl-card__actions {
|
||||
-webkit-align-items: center;
|
||||
-ms-flex-align: center;
|
||||
align-items: center;
|
||||
box-sizing: border-box;
|
||||
display: -webkit-flex;
|
||||
display: -ms-flexbox;
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.portfolio-contact .mdl-textfield {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.portfolio-contact form {
|
||||
max-width: 550px;
|
||||
margin: auto;
|
||||
}
|
||||
|
||||
footer {
|
||||
background-image: url(images/footer-background.png);
|
||||
background-size: cover;
|
||||
}
|
||||
|
||||
172
old/CONTENT/THEME/ASSETS/CSS/styles.css~
Normal file
@@ -0,0 +1,172 @@
|
||||
.portfolio-header {
|
||||
position: relative;
|
||||
/*background-size:100% auto;
|
||||
background-repeat: no-repeat;*/
|
||||
background-image: url(/Diz/THEME/IMJ/images/header-bg.jpg);
|
||||
}
|
||||
|
||||
.portfolio-header .mdl-layout__header-row {
|
||||
padding: 0;
|
||||
-webkit-justify-content: center;
|
||||
-ms-flex-pack: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.mdl-layout__title {
|
||||
font-size: 14px;
|
||||
text-align: center;
|
||||
font-weight: 300;
|
||||
}
|
||||
|
||||
.is-compact .mdl-layout__title span {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.portfolio-logo-row {
|
||||
min-height: 200px;
|
||||
}
|
||||
|
||||
.is-compact .portfolio-logo-row {
|
||||
min-height: auto;
|
||||
}
|
||||
|
||||
.portfolio-logo {
|
||||
background: url(images/logo.png) 50% no-repeat;
|
||||
background-size: cover;
|
||||
height: 150px;
|
||||
width: 150px;
|
||||
margin: auto auto 10px;
|
||||
}
|
||||
|
||||
.is-compact .portfolio-logo {
|
||||
height: 50px;
|
||||
width: 50px;
|
||||
margin-top: 7px;
|
||||
}
|
||||
|
||||
.portfolio-navigation-row {
|
||||
background-color: rgba(0, 0, 0, 0.08);
|
||||
text-transform: uppercase;
|
||||
height: 45px;
|
||||
}
|
||||
|
||||
.portfolio-navigation-row .mdl-navigation {
|
||||
text-align: center;
|
||||
max-width: 900px;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.portfolio-navigation-row .mdl-navigation__link {
|
||||
-webkit-flex: 1;
|
||||
-ms-flex: 1;
|
||||
flex: 1;
|
||||
line-height: 42px;
|
||||
}
|
||||
|
||||
.portfolio-header .mdl-layout__drawer-button {
|
||||
background-color: rgba(197, 197, 197, 0.44);
|
||||
}
|
||||
|
||||
.portfolio-navigation-row .is-active {
|
||||
position: relative;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.portfolio-navigation-row .is-active:after {
|
||||
content: "";
|
||||
width: 70%;
|
||||
height: 2px;
|
||||
display: block;
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
background-color: rgb(255,64,129);
|
||||
left: 15%;
|
||||
}
|
||||
|
||||
.portfolio-card .mdl-card__title {
|
||||
padding-bottom: 0;
|
||||
}
|
||||
|
||||
.portfolio-blog-card-full-bg {
|
||||
background: url(images/example-blog03.jpg) center / cover;
|
||||
}
|
||||
|
||||
.portfolio-blog-card-event-bg {
|
||||
background: url(images/example-blog05.jpg) center / cover;
|
||||
}
|
||||
|
||||
.portfolio-blog-card-strip-bg {
|
||||
background: url(images/example-blog06.jpg) center / cover;
|
||||
}
|
||||
|
||||
.portfolio-blog-card-compact .mdl-card__title {
|
||||
padding-bottom: 0;
|
||||
}
|
||||
|
||||
.portfolio-blog-card-bg > .mdl-card__actions {
|
||||
height: 52px;
|
||||
padding: 16px;
|
||||
background: rgba(0, 0, 0, 0.2);
|
||||
}
|
||||
|
||||
img.article-image {
|
||||
width: 100%;
|
||||
height: auto;
|
||||
}
|
||||
|
||||
.portfolio-max-width {
|
||||
max-width: 900px;
|
||||
margin: auto;
|
||||
}
|
||||
|
||||
.portfolio-copy {
|
||||
max-width: 700px;
|
||||
}
|
||||
|
||||
.no-padding {
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.no-left-padding{
|
||||
padding-left: 0;
|
||||
}
|
||||
|
||||
.no-bottom-padding {
|
||||
padding-bottom: 0;
|
||||
}
|
||||
|
||||
.padding-top {
|
||||
padding: 10px 0 0;
|
||||
}
|
||||
|
||||
.portfolio-share-btn {
|
||||
position: relative;
|
||||
float: right;
|
||||
top: -4px;
|
||||
}
|
||||
|
||||
.demo-card-event > .mdl-card__actions {
|
||||
-webkit-align-items: center;
|
||||
-ms-flex-align: center;
|
||||
align-items: center;
|
||||
box-sizing: border-box;
|
||||
display: -webkit-flex;
|
||||
display: -ms-flexbox;
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.portfolio-contact .mdl-textfield {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.portfolio-contact form {
|
||||
max-width: 550px;
|
||||
margin: auto;
|
||||
}
|
||||
|
||||
footer {
|
||||
background-image: url(images/footer-background.png);
|
||||
background-size: cover;
|
||||
}
|
||||
|
||||
171
old/CONTENT/THEME/ASSETS/CSS/styles2.css
Normal file
@@ -0,0 +1,171 @@
|
||||
.portfolio-header {
|
||||
position: relative;
|
||||
/*background-size:100% auto;
|
||||
background-repeat: no-repeat;*/
|
||||
background-image: url(/CONTENT/THEME/ASSETS/images/header-bg.jpg);
|
||||
}
|
||||
|
||||
.portfolio-header .mdl-layout__header-row {
|
||||
padding: 0;
|
||||
-webkit-justify-content: center;
|
||||
-ms-flex-pack: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.mdl-layout__title {
|
||||
font-size: 14px;
|
||||
text-align: center;
|
||||
font-weight: 300;
|
||||
}
|
||||
|
||||
.is-compact .mdl-layout__title span {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.portfolio-logo-row {
|
||||
min-height: 200px;
|
||||
}
|
||||
|
||||
.is-compact .portfolio-logo-row {
|
||||
min-height: auto;
|
||||
}
|
||||
|
||||
.portfolio-logo {
|
||||
background: url(/CONTENT/THEME/ASSETS/images/logo-en.png) 50% no-repeat;
|
||||
background-size: cover;
|
||||
height: 150px;
|
||||
width: 150px;
|
||||
margin: auto auto 10px;
|
||||
}
|
||||
|
||||
.is-compact .portfolio-logo {
|
||||
height: 50px;
|
||||
width: 50px;
|
||||
margin-top: 7px;
|
||||
}
|
||||
|
||||
.portfolio-navigation-row {
|
||||
background-color: rgba(0, 0, 0, 0.08);
|
||||
text-transform: uppercase;
|
||||
height: 45px;
|
||||
}
|
||||
|
||||
.portfolio-navigation-row .mdl-navigation {
|
||||
text-align: center;
|
||||
max-width: 900px;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.portfolio-navigation-row .mdl-navigation__link {
|
||||
-webkit-flex: 1;
|
||||
-ms-flex: 1;
|
||||
flex: 1;
|
||||
line-height: 42px;
|
||||
}
|
||||
|
||||
.portfolio-header .mdl-layout__drawer-button {
|
||||
background-color: rgba(197, 197, 197, 0.44);
|
||||
}
|
||||
|
||||
.portfolio-navigation-row .is-active {
|
||||
position: relative;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.portfolio-navigation-row .is-active:after {
|
||||
content: "";
|
||||
width: 70%;
|
||||
height: 2px;
|
||||
display: block;
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
background-color: rgb(255,64,129);
|
||||
left: 15%;
|
||||
}
|
||||
|
||||
.portfolio-card .mdl-card__title {
|
||||
padding-bottom: 0;
|
||||
}
|
||||
|
||||
.portfolio-blog-card-full-bg {
|
||||
background: url(images/example-blog03.jpg) center / cover;
|
||||
}
|
||||
|
||||
.portfolio-blog-card-event-bg {
|
||||
background: url(images/example-blog05.jpg) center / cover;
|
||||
}
|
||||
|
||||
.portfolio-blog-card-strip-bg {
|
||||
background: url(images/example-blog06.jpg) center / cover;
|
||||
}
|
||||
|
||||
.portfolio-blog-card-compact .mdl-card__title {
|
||||
padding-bottom: 0;
|
||||
}
|
||||
|
||||
.portfolio-blog-card-bg > .mdl-card__actions {
|
||||
height: 52px;
|
||||
padding: 16px;
|
||||
background: rgba(0, 0, 0, 0.2);
|
||||
}
|
||||
|
||||
img.article-image {
|
||||
width: 100%;
|
||||
height: auto;
|
||||
}
|
||||
|
||||
.portfolio-max-width {
|
||||
max-width: 900px;
|
||||
margin: auto;
|
||||
}
|
||||
|
||||
.portfolio-copy {
|
||||
max-width: 700px;
|
||||
}
|
||||
|
||||
.no-padding {
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.no-left-padding{
|
||||
padding-left: 0;
|
||||
}
|
||||
|
||||
.no-bottom-padding {
|
||||
padding-bottom: 0;
|
||||
}
|
||||
|
||||
.padding-top {
|
||||
padding: 10px 0 0;
|
||||
}
|
||||
|
||||
.portfolio-share-btn {
|
||||
position: relative;
|
||||
float: right;
|
||||
top: -4px;
|
||||
}
|
||||
|
||||
.demo-card-event > .mdl-card__actions {
|
||||
-webkit-align-items: center;
|
||||
-ms-flex-align: center;
|
||||
align-items: center;
|
||||
box-sizing: border-box;
|
||||
display: -webkit-flex;
|
||||
display: -ms-flexbox;
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.portfolio-contact .mdl-textfield {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.portfolio-contact form {
|
||||
max-width: 550px;
|
||||
margin: auto;
|
||||
}
|
||||
|
||||
footer {
|
||||
background-image: url(images/footer-background.png);
|
||||
background-size: cover;
|
||||
}
|
||||
2
old/CONTENT/THEME/ASSETS/JS/d.js.map
Normal file
0
old/CONTENT/THEME/ASSETS/JS/d.js~
Normal file
11
old/CONTENT/THEME/ASSETS/JS/material-1.3.0.min (copy).js
Normal file
11
old/CONTENT/THEME/ASSETS/JS/material-1.3.0.min.js
vendored
Normal file
11
old/CONTENT/THEME/ASSETS/JS/material-1.3.0.min.js~
Normal file
BIN
old/CONTENT/THEME/ASSETS/images/about-header.jpg
Normal file
|
After Width: | Height: | Size: 25 KiB |
BIN
old/CONTENT/THEME/ASSETS/images/contact-image.jpg
Normal file
|
After Width: | Height: | Size: 28 KiB |
BIN
old/CONTENT/THEME/ASSETS/images/example-blog01.jpg
Normal file
|
After Width: | Height: | Size: 9.7 KiB |
BIN
old/CONTENT/THEME/ASSETS/images/example-blog02.jpg
Normal file
|
After Width: | Height: | Size: 7.1 KiB |
BIN
old/CONTENT/THEME/ASSETS/images/example-blog03.jpg
Normal file
|
After Width: | Height: | Size: 13 KiB |
BIN
old/CONTENT/THEME/ASSETS/images/example-blog04.jpg
Normal file
|
After Width: | Height: | Size: 2.3 KiB |
BIN
old/CONTENT/THEME/ASSETS/images/example-blog05.jpg
Normal file
|
After Width: | Height: | Size: 3.0 KiB |
BIN
old/CONTENT/THEME/ASSETS/images/example-blog06.jpg
Normal file
|
After Width: | Height: | Size: 11 KiB |
BIN
old/CONTENT/THEME/ASSETS/images/example-blog07.jpg
Normal file
|
After Width: | Height: | Size: 6.5 KiB |
BIN
old/CONTENT/THEME/ASSETS/images/example-work01.jpg
Normal file
|
After Width: | Height: | Size: 16 KiB |
BIN
old/CONTENT/THEME/ASSETS/images/example-work02.jpg
Normal file
|
After Width: | Height: | Size: 15 KiB |
BIN
old/CONTENT/THEME/ASSETS/images/example-work03.jpg
Normal file
|
After Width: | Height: | Size: 11 KiB |
BIN
old/CONTENT/THEME/ASSETS/images/example-work04.jpg
Normal file
|
After Width: | Height: | Size: 8.8 KiB |
BIN
old/CONTENT/THEME/ASSETS/images/example-work05.jpg
Normal file
|
After Width: | Height: | Size: 14 KiB |
BIN
old/CONTENT/THEME/ASSETS/images/example-work06.jpg
Normal file
|
After Width: | Height: | Size: 9.5 KiB |
BIN
old/CONTENT/THEME/ASSETS/images/example-work07.jpg
Normal file
|
After Width: | Height: | Size: 23 KiB |
BIN
old/CONTENT/THEME/ASSETS/images/example-work08.jpg
Normal file
|
After Width: | Height: | Size: 13 KiB |
BIN
old/CONTENT/THEME/ASSETS/images/example-work09.jpg
Normal file
|
After Width: | Height: | Size: 27 KiB |
BIN
old/CONTENT/THEME/ASSETS/images/footer-background.png
Normal file
|
After Width: | Height: | Size: 1.3 KiB |
BIN
old/CONTENT/THEME/ASSETS/images/header-bg (copy 1).jpg
Normal file
|
After Width: | Height: | Size: 9.8 KiB |
BIN
old/CONTENT/THEME/ASSETS/images/header-bg.jpg
Normal file
|
After Width: | Height: | Size: 63 KiB |
BIN
old/CONTENT/THEME/ASSETS/images/logo-en.png
Normal file
|
After Width: | Height: | Size: 13 KiB |
BIN
old/CONTENT/THEME/ASSETS/images/logo.png
Normal file
|
After Width: | Height: | Size: 31 KiB |
BIN
old/CONTENT/THEME/ASSETS/images/photo-wide.jpg
Normal file
|
After Width: | Height: | Size: 9.7 KiB |
BIN
old/CONTENT/THEME/ASSETS/images/photo.jpg
Normal file
|
After Width: | Height: | Size: 9.2 KiB |
BIN
old/CONTENT/THEME/ASSETS/images/portfolio-example-01.jpg
Normal file
|
After Width: | Height: | Size: 14 KiB |
BIN
old/CONTENT/THEME/ASSETS/images/portfolio-example-02.jpg
Normal file
|
After Width: | Height: | Size: 15 KiB |
BIN
old/CONTENT/THEME/ASSETS/images/portfolio-example-03.jpg
Normal file
|
After Width: | Height: | Size: 12 KiB |
BIN
old/CONTENT/THEME/ASSETS/images/portfolio-example-04.jpg
Normal file
|
After Width: | Height: | Size: 6.7 KiB |
BIN
old/CONTENT/THEME/ASSETS/images/portfolio-example-05.jpg
Normal file
|
After Width: | Height: | Size: 17 KiB |
BIN
old/CONTENT/THEME/ASSETS/images/portfolio-example-06.jpg
Normal file
|
After Width: | Height: | Size: 12 KiB |
8041
old/CONTENT/THEME/css/bootstrap.min.css
vendored
Normal file
3
old/CONTENT/THEME/css/docs.theme.min.css
vendored
Normal file
7
old/CONTENT/THEME/css/owl.carousel.min.css
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
/**
|
||||
* Owl Carousel v2.3.0
|
||||
* Copyright 2013-2017 David Deutsch
|
||||
* Licensed under ()
|
||||
*/
|
||||
.owl-carousel,.owl-carousel .owl-item{-webkit-tap-highlight-color:transparent;position:relative}.owl-carousel{display:none;width:100%;z-index:1}.owl-carousel .owl-stage{position:relative;-ms-touch-action:pan-Y;touch-action:manipulation;-moz-backface-visibility:hidden}.owl-carousel .owl-stage:after{content:".";display:block;clear:both;visibility:hidden;line-height:0;height:0}
|
||||
.owl-carousel .owl-stage-outer{position:relative;overflow:hidden;-webkit-transform:translate3d(0,0,0)}.owl-carousel .owl-item,.owl-carousel .owl-wrapper{-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0)}.owl-carousel .owl-item{min-height:1px;float:left;-webkit-backface-visibility:hidden;-webkit-touch-callout:none}.owl-carousel .owl-item img{display:block;width:100%}.owl-carousel .owl-dots.disabled,.owl-carousel .owl-nav.disabled{display:none}.no-js .owl-carousel,.owl-carousel.owl-loaded{display:block}.owl-carousel .owl-dot,.owl-carousel .owl-nav .owl-next,.owl-carousel .owl-nav .owl-prev{cursor:pointer;cursor:hand;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel .owl-nav button.owl-next,.owl-carousel .owl-nav button.owl-prev,.owl-carousel button.owl-dot{background:0 0;color:inherit;border:none;padding:0!important;font:inherit}.owl-carousel.owl-loading{opacity:0;display:block}.owl-carousel.owl-hidden{opacity:0}.owl-carousel.owl-refresh .owl-item{visibility:hidden}.owl-carousel.owl-drag .owl-item{-ms-touch-action:none;touch-action:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel.owl-grab{cursor:move;cursor:grab}.owl-carousel.owl-rtl{direction:rtl}.owl-carousel.owl-rtl .owl-item{float:right}.owl-carousel .animated{-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-fill-mode:both;animation-fill-mode:both}.owl-carousel .owl-animated-in{z-index:0}.owl-carousel .owl-animated-out{z-index:1}.owl-carousel .fadeOut{-webkit-animation-name:fadeOut;animation-name:fadeOut}@-webkit-keyframes fadeOut{0%{opacity:1}100%{opacity:0}}@keyframes fadeOut{0%{opacity:1}100%{opacity:0}}.owl-height{transition:height .5s ease-in-out}.owl-carousel .owl-item .owl-lazy{opacity:0;transition:opacity .4s ease}.owl-carousel .owl-item img.owl-lazy{-webkit-transform-style:preserve-3d;transform-style:preserve-3d}.owl-carousel .owl-video-wrapper{position:relative;height:100%;background:#000}.owl-carousel .owl-video-play-icon{position:absolute;height:80px;width:80px;left:50%;top:50%;margin-left:-40px;margin-top:-40px;background:url(owl.video.play.png) no-repeat;cursor:pointer;z-index:1;-webkit-backface-visibility:hidden;transition:-webkit-transform .1s ease;transition:transform .1s ease}.owl-carousel .owl-video-play-icon:hover{-webkit-transform:scale(1.3,1.3);-ms-transform:scale(1.3,1.3);transform:scale(1.3,1.3)}.owl-carousel .owl-video-playing .owl-video-play-icon,.owl-carousel .owl-video-playing .owl-video-tn{display:none}.owl-carousel .owl-video-tn{opacity:0;height:100%;background-position:center center;background-repeat:no-repeat;background-size:contain;transition:opacity .4s ease}.owl-carousel .owl-video-frame{position:relative;z-index:1;height:100%;width:100%}
|
||||
50
old/CONTENT/THEME/css/owl.theme.default.css
Normal file
@@ -0,0 +1,50 @@
|
||||
/**
|
||||
* Owl Carousel v2.3.0
|
||||
* Copyright 2013-2017 David Deutsch
|
||||
* Licensed under ()
|
||||
*/
|
||||
/*
|
||||
* Default theme - Owl Carousel CSS File
|
||||
*/
|
||||
.owl-theme .owl-nav {
|
||||
margin-top: 10px;
|
||||
text-align: center;
|
||||
-webkit-tap-highlight-color: transparent; }
|
||||
.owl-theme .owl-nav [class*='owl-'] {
|
||||
color: #FFF;
|
||||
font-size: 14px;
|
||||
margin: 5px;
|
||||
padding: 4px 7px;
|
||||
background: #D6D6D6;
|
||||
display: inline-block;
|
||||
cursor: pointer;
|
||||
border-radius: 3px; }
|
||||
.owl-theme .owl-nav [class*='owl-']:hover {
|
||||
background: #869791;
|
||||
color: #FFF;
|
||||
text-decoration: none; }
|
||||
.owl-theme .owl-nav .disabled {
|
||||
opacity: 0.5;
|
||||
cursor: default; }
|
||||
|
||||
.owl-theme .owl-nav.disabled + .owl-dots {
|
||||
margin-top: 10px; }
|
||||
|
||||
.owl-theme .owl-dots {
|
||||
text-align: center;
|
||||
-webkit-tap-highlight-color: transparent; }
|
||||
.owl-theme .owl-dots .owl-dot {
|
||||
display: inline-block;
|
||||
zoom: 1;
|
||||
*display: inline; }
|
||||
.owl-theme .owl-dots .owl-dot span {
|
||||
width: 10px;
|
||||
height: 10px;
|
||||
margin: 5px 7px;
|
||||
background: #D6D6D6;
|
||||
display: block;
|
||||
-webkit-backface-visibility: visible;
|
||||
transition: opacity 200ms ease;
|
||||
border-radius: 30px; }
|
||||
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
|
||||
background: #869791; }
|
||||
249
old/CONTENT/THEME/css/style.css
Normal file
@@ -0,0 +1,249 @@
|
||||
|
||||
|
||||
body{ background-color:#ccc; }
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
/*==========================hard-start======================*/
|
||||
|
||||
.hard { background: #fff; padding: 12px 0 12px 0; margin: 0; }
|
||||
.hard .lt-block{ padding: 0; margin: 0; }
|
||||
.hard .lt-block h3{ font-family: ; font-size:16px ; color: #000; line-height: 18px; font-weight: 400; padding: 0; margin: 0; }
|
||||
.hard .rt-block{ float: right; padding:0; margin: 0;}
|
||||
.hard .rt-block ul{ padding: 0; margin: 0; }
|
||||
.hard .rt-block ul li{ display:inline-block; text-align: right; text-decoration: none; padding: 0 12px 0 0; margin: 0; }
|
||||
.hard .rt-block ul li a{ padding: 0; margin: 0; }
|
||||
/*==========================hard-start======================*/
|
||||
|
||||
|
||||
|
||||
.low-body { background:#65e851; padding: 0; min-height: 0; }
|
||||
.low-body .navbar-default{ background-color: #343534; border: 0; padding:0; margin:0; }
|
||||
.low-body .navbar-default .navbar-nav>li>a{ font-size: 16px; color: #fff !important; line-height: 18px; font-weight: bold; }
|
||||
.low-body .navbar-default .navbar-nav>li>a:hover{ background: #fff; color: #000 !important; transition: all 600ms ease-out; }
|
||||
|
||||
.low-body .navbar-default .navbar-nav>.active>a{ background: #000; color: #088939 !important; }
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
.low-body .navbar-collapse{ padding-left: 0 !important; }
|
||||
|
||||
|
||||
.low-body .banner{ background: #; padding:0; margin: 20px 0 20px 0; }
|
||||
.low-body .banner .frist{ background:#fff; padding: 15px 0 15px 0; margin: 0; }
|
||||
.low-body .banner .lt-block{ background: #95b3e2; min-height: 400px; padding: 0; margin: 0; }
|
||||
.low-body .banner .lt-block img{ width: 100%; }
|
||||
|
||||
|
||||
|
||||
|
||||
.low-body .banner .rt-block{ background: #95b3e2; min-height: 227px; padding: 0; margin: 0; }
|
||||
.low-body .banner .rt-block .wrapper-1 .example-1 ul li img{ width: 100%; min-height: 100% !important; }
|
||||
|
||||
.low-body .banner .bottom{ background: #2c6acc; min-height:150px; padding: 0; margin:30px 0 0 0; }
|
||||
.low-body .banner .bottom img{ width: 100%; min-height: height:100%; }
|
||||
|
||||
|
||||
.low-body .Top{ padding: 0; margin:0 ; }
|
||||
.low-body .Top .Top-news{ background:#fff; min-height:300px; padding:0 20px 0 20px; margin:0 !important;
|
||||
}
|
||||
.low-body .Top .Top-news h3{ font-family: 0; font-size: 25px; color: #fff; line-height: 27px; font-weight: 600;
|
||||
padding: 0 0 0 20px; margin:0 0 20px 0; }
|
||||
|
||||
.low-body .Top .Top-news .img-block{ padding: 0; margin: 0 0 0 0; }
|
||||
.low-body .Top .Top-news .img-block img{ width: 100%; }
|
||||
.low-body .Top .Top-news .text-block h4{ font-family: 0; font-size: 18px; color: #000; line-height: 20px; font-weight: 500;
|
||||
padding: 0 !important; margin:0 !important; }
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
.low-body .Top .Gallery{ background:#a442f4; min-height:200px; padding: 0 ; margin: 0; }
|
||||
.low-body .Top .Gallery .item{ height: 150px; padding: 0; margin: 0 20px 0 20px ; }
|
||||
.low-body .Top .Gallery .item img{ width: 100%; height: 100%; padding: 0; margin: 0 20px 0 20px; }
|
||||
|
||||
|
||||
.low-body .Top .Breaking-News{ background:#fff; min-height:200px; padding: 50px 20px 0 20px ; margin: 0; }
|
||||
.low-body .Top .Breaking-News .img-block{ margin: 20px 0 30px 0; padding: 0; }
|
||||
|
||||
.low-body .Top .Breaking-News .dwon-box{ background-color: #2f3056; height: 10px; position: relative; padding: 0; margin: 0;}
|
||||
.low-body .Top .Breaking-News .dwon-box h3{ font-size: 30px; color:#3a47ff; position:absolute ; left: 0; top: -11px; padding:0; z-index: 9999;}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
.low-body .Top .videos{ background:#000; min-height:300px; padding: 0; margin: 0; }
|
||||
.low-body .Top .NEW-POSTS{ background:#fff; min-height:450px; padding: 0; margin: 0; }
|
||||
|
||||
.low-body .Top .search{ background:#000; min-height:300px; padding: 0; margin: 0; }
|
||||
.low-body .Top .CALENDAR{ background:#fff; min-height:200px; padding: 0; margin: 0; }
|
||||
.low-body .Top .TWEET{ background:#fff; min-height:230px; padding: 0; margin: 0; }
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
.footer{ background: #000; padding: 30px 0 30px 0; margin: 0; }
|
||||
.footer .NEWSPAPER{ background: #fff; min-height: 300px; padding: 0; margin: 0 0 30px 0; }
|
||||
.footer .Tags{ background: #fff; min-height: 300px; padding: 0; margin: 0 0 30px 0; }
|
||||
.footer .Recent-News{ background: #fff; min-height: 300px; padding: 0; margin: 0 0 30px 0; }
|
||||
.footer .footer-bottom{ border-top: 2px solid #fff; padding: 0; min-height: 0; }
|
||||
.footer .footer-bottom .text-center { padding: 0; min-height: 0; }
|
||||
.footer .footer-bottom .text-center h4 { font-family: ; font-size:16px ; color: #fff; line-height: 18px; font-weight: 400; padding: 20px 0 0 0; margin: 0;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
.wrapper-1 {
|
||||
width: 100%;
|
||||
margin: 0 auto;
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
/*style for img in case of low download speed*/
|
||||
|
||||
.example-1 {
|
||||
overflow: hidden;
|
||||
width: 100%;
|
||||
position: relative;
|
||||
|
||||
}
|
||||
|
||||
.example-1 ul {
|
||||
overflow: hidden;
|
||||
margin: 0;
|
||||
zoom: 1;
|
||||
|
||||
}
|
||||
|
||||
.example-1 ul li { float: left; }
|
||||
|
||||
.example-1 ul li img { width: 100%; }
|
||||
|
||||
/*style for dots*/
|
||||
|
||||
|
||||
.dots-1 {
|
||||
position: absolute;
|
||||
bottom: 10px;
|
||||
right: 10px;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.dots-1 li {
|
||||
display: inline-block;
|
||||
*display: inline;
|
||||
*zoom: 1;
|
||||
width: 15px;
|
||||
height: 15px;
|
||||
margin: 0 5px;
|
||||
background: #963;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.dots-1 li:hover, .dots-1 li.active { background: #000; }
|
||||
|
||||
.wrapper-2 {
|
||||
width: 100%;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
/*style for img in case of low download speed*/
|
||||
|
||||
.example-2 {
|
||||
overflow: hidden;
|
||||
width: 100%;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.example-2 ul {
|
||||
overflow: hidden;
|
||||
margin: 0;
|
||||
zoom: 1;
|
||||
}
|
||||
|
||||
.example-2 ul li { float: left; }
|
||||
|
||||
.example-2 ul li img { width: 100%; }
|
||||
|
||||
.dots-2 {
|
||||
position: absolute;
|
||||
bottom: 20px;
|
||||
left: 50%;
|
||||
width: 300px;
|
||||
margin: 0 0 0 -150px;
|
||||
padding: 0;
|
||||
text-align: center;
|
||||
|
||||
}
|
||||
|
||||
.dots-2 li {
|
||||
display: inline-block;
|
||||
*display: inline;
|
||||
*zoom: 1;
|
||||
width: 15px;
|
||||
height: 15px;
|
||||
margin: 0 5px;
|
||||
border-radius: 50%;
|
||||
background: #fff;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.dots-2 li:hover, .dots-2 li.active { background: #ff7f02; }
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
/*=========================gallery==============================*/
|
||||
|
||||
/*=========================gallery-end==============================*/
|
||||
|
||||
7
old/CONTENT/THEME/font-awesome/HELP-US-OUT.txt
Normal file
@@ -0,0 +1,7 @@
|
||||
I hope you love Font Awesome. If you've found it useful, please do me a favor and check out my latest project,
|
||||
Fort Awesome (https://fortawesome.com). It makes it easy to put the perfect icons on your website. Choose from our awesome,
|
||||
comprehensive icon sets or copy and paste your own.
|
||||
|
||||
Please. Check it out.
|
||||
|
||||
-Dave Gandy
|
||||
2337
old/CONTENT/THEME/font-awesome/css/font-awesome.css
vendored
Normal file
4
old/CONTENT/THEME/font-awesome/css/font-awesome.min.css
vendored
Normal file
BIN
old/CONTENT/THEME/font-awesome/fonts/FontAwesome.otf
Normal file
BIN
old/CONTENT/THEME/font-awesome/fonts/fontawesome-webfont.eot
Normal file
2671
old/CONTENT/THEME/font-awesome/fonts/fontawesome-webfont.svg
Normal file
|
After Width: | Height: | Size: 434 KiB |
BIN
old/CONTENT/THEME/font-awesome/fonts/fontawesome-webfont.ttf
Normal file
BIN
old/CONTENT/THEME/font-awesome/fonts/fontawesome-webfont.woff
Normal file
BIN
old/CONTENT/THEME/font-awesome/fonts/fontawesome-webfont.woff2
Normal file
34
old/CONTENT/THEME/font-awesome/less/animated.less
vendored
Normal file
@@ -0,0 +1,34 @@
|
||||
// Animated Icons
|
||||
// --------------------------
|
||||
|
||||
.@{fa-css-prefix}-spin {
|
||||
-webkit-animation: fa-spin 2s infinite linear;
|
||||
animation: fa-spin 2s infinite linear;
|
||||
}
|
||||
|
||||
.@{fa-css-prefix}-pulse {
|
||||
-webkit-animation: fa-spin 1s infinite steps(8);
|
||||
animation: fa-spin 1s infinite steps(8);
|
||||
}
|
||||
|
||||
@-webkit-keyframes fa-spin {
|
||||
0% {
|
||||
-webkit-transform: rotate(0deg);
|
||||
transform: rotate(0deg);
|
||||
}
|
||||
100% {
|
||||
-webkit-transform: rotate(359deg);
|
||||
transform: rotate(359deg);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes fa-spin {
|
||||
0% {
|
||||
-webkit-transform: rotate(0deg);
|
||||
transform: rotate(0deg);
|
||||
}
|
||||
100% {
|
||||
-webkit-transform: rotate(359deg);
|
||||
transform: rotate(359deg);
|
||||
}
|
||||
}
|
||||
25
old/CONTENT/THEME/font-awesome/less/bordered-pulled.less
vendored
Normal file
@@ -0,0 +1,25 @@
|
||||
// Bordered & Pulled
|
||||
// -------------------------
|
||||
|
||||
.@{fa-css-prefix}-border {
|
||||
padding: .2em .25em .15em;
|
||||
border: solid .08em @fa-border-color;
|
||||
border-radius: .1em;
|
||||
}
|
||||
|
||||
.@{fa-css-prefix}-pull-left { float: left; }
|
||||
.@{fa-css-prefix}-pull-right { float: right; }
|
||||
|
||||
.@{fa-css-prefix} {
|
||||
&.@{fa-css-prefix}-pull-left { margin-right: .3em; }
|
||||
&.@{fa-css-prefix}-pull-right { margin-left: .3em; }
|
||||
}
|
||||
|
||||
/* Deprecated as of 4.4.0 */
|
||||
.pull-right { float: right; }
|
||||
.pull-left { float: left; }
|
||||
|
||||
.@{fa-css-prefix} {
|
||||
&.pull-left { margin-right: .3em; }
|
||||
&.pull-right { margin-left: .3em; }
|
||||
}
|
||||
12
old/CONTENT/THEME/font-awesome/less/core.less
vendored
Normal file
@@ -0,0 +1,12 @@
|
||||
// Base Class Definition
|
||||
// -------------------------
|
||||
|
||||
.@{fa-css-prefix} {
|
||||
display: inline-block;
|
||||
font: normal normal normal @fa-font-size-base/@fa-line-height-base FontAwesome; // shortening font declaration
|
||||
font-size: inherit; // can't have font-size inherit on line above, so need to override
|
||||
text-rendering: auto; // optimizelegibility throws things off #1094
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
|
||||
}
|
||||
6
old/CONTENT/THEME/font-awesome/less/fixed-width.less
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
// Fixed Width Icons
|
||||
// -------------------------
|
||||
.@{fa-css-prefix}-fw {
|
||||
width: (18em / 14);
|
||||
text-align: center;
|
||||
}
|
||||
18
old/CONTENT/THEME/font-awesome/less/font-awesome.less
vendored
Normal file
@@ -0,0 +1,18 @@
|
||||
/*!
|
||||
* Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
|
||||
* License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
|
||||
*/
|
||||
|
||||
@import "variables.less";
|
||||
@import "mixins.less";
|
||||
@import "path.less";
|
||||
@import "core.less";
|
||||
@import "larger.less";
|
||||
@import "fixed-width.less";
|
||||
@import "list.less";
|
||||
@import "bordered-pulled.less";
|
||||
@import "animated.less";
|
||||
@import "rotated-flipped.less";
|
||||
@import "stacked.less";
|
||||
@import "icons.less";
|
||||
@import "screen-reader.less";
|
||||
789
old/CONTENT/THEME/font-awesome/less/icons.less
vendored
Normal file
@@ -0,0 +1,789 @@
|
||||
/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
|
||||
readers do not read off random characters that represent icons */
|
||||
|
||||
.@{fa-css-prefix}-glass:before { content: @fa-var-glass; }
|
||||
.@{fa-css-prefix}-music:before { content: @fa-var-music; }
|
||||
.@{fa-css-prefix}-search:before { content: @fa-var-search; }
|
||||
.@{fa-css-prefix}-envelope-o:before { content: @fa-var-envelope-o; }
|
||||
.@{fa-css-prefix}-heart:before { content: @fa-var-heart; }
|
||||
.@{fa-css-prefix}-star:before { content: @fa-var-star; }
|
||||
.@{fa-css-prefix}-star-o:before { content: @fa-var-star-o; }
|
||||
.@{fa-css-prefix}-user:before { content: @fa-var-user; }
|
||||
.@{fa-css-prefix}-film:before { content: @fa-var-film; }
|
||||
.@{fa-css-prefix}-th-large:before { content: @fa-var-th-large; }
|
||||
.@{fa-css-prefix}-th:before { content: @fa-var-th; }
|
||||
.@{fa-css-prefix}-th-list:before { content: @fa-var-th-list; }
|
||||
.@{fa-css-prefix}-check:before { content: @fa-var-check; }
|
||||
.@{fa-css-prefix}-remove:before,
|
||||
.@{fa-css-prefix}-close:before,
|
||||
.@{fa-css-prefix}-times:before { content: @fa-var-times; }
|
||||
.@{fa-css-prefix}-search-plus:before { content: @fa-var-search-plus; }
|
||||
.@{fa-css-prefix}-search-minus:before { content: @fa-var-search-minus; }
|
||||
.@{fa-css-prefix}-power-off:before { content: @fa-var-power-off; }
|
||||
.@{fa-css-prefix}-signal:before { content: @fa-var-signal; }
|
||||
.@{fa-css-prefix}-gear:before,
|
||||
.@{fa-css-prefix}-cog:before { content: @fa-var-cog; }
|
||||
.@{fa-css-prefix}-trash-o:before { content: @fa-var-trash-o; }
|
||||
.@{fa-css-prefix}-home:before { content: @fa-var-home; }
|
||||
.@{fa-css-prefix}-file-o:before { content: @fa-var-file-o; }
|
||||
.@{fa-css-prefix}-clock-o:before { content: @fa-var-clock-o; }
|
||||
.@{fa-css-prefix}-road:before { content: @fa-var-road; }
|
||||
.@{fa-css-prefix}-download:before { content: @fa-var-download; }
|
||||
.@{fa-css-prefix}-arrow-circle-o-down:before { content: @fa-var-arrow-circle-o-down; }
|
||||
.@{fa-css-prefix}-arrow-circle-o-up:before { content: @fa-var-arrow-circle-o-up; }
|
||||
.@{fa-css-prefix}-inbox:before { content: @fa-var-inbox; }
|
||||
.@{fa-css-prefix}-play-circle-o:before { content: @fa-var-play-circle-o; }
|
||||
.@{fa-css-prefix}-rotate-right:before,
|
||||
.@{fa-css-prefix}-repeat:before { content: @fa-var-repeat; }
|
||||
.@{fa-css-prefix}-refresh:before { content: @fa-var-refresh; }
|
||||
.@{fa-css-prefix}-list-alt:before { content: @fa-var-list-alt; }
|
||||
.@{fa-css-prefix}-lock:before { content: @fa-var-lock; }
|
||||
.@{fa-css-prefix}-flag:before { content: @fa-var-flag; }
|
||||
.@{fa-css-prefix}-headphones:before { content: @fa-var-headphones; }
|
||||
.@{fa-css-prefix}-volume-off:before { content: @fa-var-volume-off; }
|
||||
.@{fa-css-prefix}-volume-down:before { content: @fa-var-volume-down; }
|
||||
.@{fa-css-prefix}-volume-up:before { content: @fa-var-volume-up; }
|
||||
.@{fa-css-prefix}-qrcode:before { content: @fa-var-qrcode; }
|
||||
.@{fa-css-prefix}-barcode:before { content: @fa-var-barcode; }
|
||||
.@{fa-css-prefix}-tag:before { content: @fa-var-tag; }
|
||||
.@{fa-css-prefix}-tags:before { content: @fa-var-tags; }
|
||||
.@{fa-css-prefix}-book:before { content: @fa-var-book; }
|
||||
.@{fa-css-prefix}-bookmark:before { content: @fa-var-bookmark; }
|
||||
.@{fa-css-prefix}-print:before { content: @fa-var-print; }
|
||||
.@{fa-css-prefix}-camera:before { content: @fa-var-camera; }
|
||||
.@{fa-css-prefix}-font:before { content: @fa-var-font; }
|
||||
.@{fa-css-prefix}-bold:before { content: @fa-var-bold; }
|
||||
.@{fa-css-prefix}-italic:before { content: @fa-var-italic; }
|
||||
.@{fa-css-prefix}-text-height:before { content: @fa-var-text-height; }
|
||||
.@{fa-css-prefix}-text-width:before { content: @fa-var-text-width; }
|
||||
.@{fa-css-prefix}-align-left:before { content: @fa-var-align-left; }
|
||||
.@{fa-css-prefix}-align-center:before { content: @fa-var-align-center; }
|
||||
.@{fa-css-prefix}-align-right:before { content: @fa-var-align-right; }
|
||||
.@{fa-css-prefix}-align-justify:before { content: @fa-var-align-justify; }
|
||||
.@{fa-css-prefix}-list:before { content: @fa-var-list; }
|
||||
.@{fa-css-prefix}-dedent:before,
|
||||
.@{fa-css-prefix}-outdent:before { content: @fa-var-outdent; }
|
||||
.@{fa-css-prefix}-indent:before { content: @fa-var-indent; }
|
||||
.@{fa-css-prefix}-video-camera:before { content: @fa-var-video-camera; }
|
||||
.@{fa-css-prefix}-photo:before,
|
||||
.@{fa-css-prefix}-image:before,
|
||||
.@{fa-css-prefix}-picture-o:before { content: @fa-var-picture-o; }
|
||||
.@{fa-css-prefix}-pencil:before { content: @fa-var-pencil; }
|
||||
.@{fa-css-prefix}-map-marker:before { content: @fa-var-map-marker; }
|
||||
.@{fa-css-prefix}-adjust:before { content: @fa-var-adjust; }
|
||||
.@{fa-css-prefix}-tint:before { content: @fa-var-tint; }
|
||||
.@{fa-css-prefix}-edit:before,
|
||||
.@{fa-css-prefix}-pencil-square-o:before { content: @fa-var-pencil-square-o; }
|
||||
.@{fa-css-prefix}-share-square-o:before { content: @fa-var-share-square-o; }
|
||||
.@{fa-css-prefix}-check-square-o:before { content: @fa-var-check-square-o; }
|
||||
.@{fa-css-prefix}-arrows:before { content: @fa-var-arrows; }
|
||||
.@{fa-css-prefix}-step-backward:before { content: @fa-var-step-backward; }
|
||||
.@{fa-css-prefix}-fast-backward:before { content: @fa-var-fast-backward; }
|
||||
.@{fa-css-prefix}-backward:before { content: @fa-var-backward; }
|
||||
.@{fa-css-prefix}-play:before { content: @fa-var-play; }
|
||||
.@{fa-css-prefix}-pause:before { content: @fa-var-pause; }
|
||||
.@{fa-css-prefix}-stop:before { content: @fa-var-stop; }
|
||||
.@{fa-css-prefix}-forward:before { content: @fa-var-forward; }
|
||||
.@{fa-css-prefix}-fast-forward:before { content: @fa-var-fast-forward; }
|
||||
.@{fa-css-prefix}-step-forward:before { content: @fa-var-step-forward; }
|
||||
.@{fa-css-prefix}-eject:before { content: @fa-var-eject; }
|
||||
.@{fa-css-prefix}-chevron-left:before { content: @fa-var-chevron-left; }
|
||||
.@{fa-css-prefix}-chevron-right:before { content: @fa-var-chevron-right; }
|
||||
.@{fa-css-prefix}-plus-circle:before { content: @fa-var-plus-circle; }
|
||||
.@{fa-css-prefix}-minus-circle:before { content: @fa-var-minus-circle; }
|
||||
.@{fa-css-prefix}-times-circle:before { content: @fa-var-times-circle; }
|
||||
.@{fa-css-prefix}-check-circle:before { content: @fa-var-check-circle; }
|
||||
.@{fa-css-prefix}-question-circle:before { content: @fa-var-question-circle; }
|
||||
.@{fa-css-prefix}-info-circle:before { content: @fa-var-info-circle; }
|
||||
.@{fa-css-prefix}-crosshairs:before { content: @fa-var-crosshairs; }
|
||||
.@{fa-css-prefix}-times-circle-o:before { content: @fa-var-times-circle-o; }
|
||||
.@{fa-css-prefix}-check-circle-o:before { content: @fa-var-check-circle-o; }
|
||||
.@{fa-css-prefix}-ban:before { content: @fa-var-ban; }
|
||||
.@{fa-css-prefix}-arrow-left:before { content: @fa-var-arrow-left; }
|
||||
.@{fa-css-prefix}-arrow-right:before { content: @fa-var-arrow-right; }
|
||||
.@{fa-css-prefix}-arrow-up:before { content: @fa-var-arrow-up; }
|
||||
.@{fa-css-prefix}-arrow-down:before { content: @fa-var-arrow-down; }
|
||||
.@{fa-css-prefix}-mail-forward:before,
|
||||
.@{fa-css-prefix}-share:before { content: @fa-var-share; }
|
||||
.@{fa-css-prefix}-expand:before { content: @fa-var-expand; }
|
||||
.@{fa-css-prefix}-compress:before { content: @fa-var-compress; }
|
||||
.@{fa-css-prefix}-plus:before { content: @fa-var-plus; }
|
||||
.@{fa-css-prefix}-minus:before { content: @fa-var-minus; }
|
||||
.@{fa-css-prefix}-asterisk:before { content: @fa-var-asterisk; }
|
||||
.@{fa-css-prefix}-exclamation-circle:before { content: @fa-var-exclamation-circle; }
|
||||
.@{fa-css-prefix}-gift:before { content: @fa-var-gift; }
|
||||
.@{fa-css-prefix}-leaf:before { content: @fa-var-leaf; }
|
||||
.@{fa-css-prefix}-fire:before { content: @fa-var-fire; }
|
||||
.@{fa-css-prefix}-eye:before { content: @fa-var-eye; }
|
||||
.@{fa-css-prefix}-eye-slash:before { content: @fa-var-eye-slash; }
|
||||
.@{fa-css-prefix}-warning:before,
|
||||
.@{fa-css-prefix}-exclamation-triangle:before { content: @fa-var-exclamation-triangle; }
|
||||
.@{fa-css-prefix}-plane:before { content: @fa-var-plane; }
|
||||
.@{fa-css-prefix}-calendar:before { content: @fa-var-calendar; }
|
||||
.@{fa-css-prefix}-random:before { content: @fa-var-random; }
|
||||
.@{fa-css-prefix}-comment:before { content: @fa-var-comment; }
|
||||
.@{fa-css-prefix}-magnet:before { content: @fa-var-magnet; }
|
||||
.@{fa-css-prefix}-chevron-up:before { content: @fa-var-chevron-up; }
|
||||
.@{fa-css-prefix}-chevron-down:before { content: @fa-var-chevron-down; }
|
||||
.@{fa-css-prefix}-retweet:before { content: @fa-var-retweet; }
|
||||
.@{fa-css-prefix}-shopping-cart:before { content: @fa-var-shopping-cart; }
|
||||
.@{fa-css-prefix}-folder:before { content: @fa-var-folder; }
|
||||
.@{fa-css-prefix}-folder-open:before { content: @fa-var-folder-open; }
|
||||
.@{fa-css-prefix}-arrows-v:before { content: @fa-var-arrows-v; }
|
||||
.@{fa-css-prefix}-arrows-h:before { content: @fa-var-arrows-h; }
|
||||
.@{fa-css-prefix}-bar-chart-o:before,
|
||||
.@{fa-css-prefix}-bar-chart:before { content: @fa-var-bar-chart; }
|
||||
.@{fa-css-prefix}-twitter-square:before { content: @fa-var-twitter-square; }
|
||||
.@{fa-css-prefix}-facebook-square:before { content: @fa-var-facebook-square; }
|
||||
.@{fa-css-prefix}-camera-retro:before { content: @fa-var-camera-retro; }
|
||||
.@{fa-css-prefix}-key:before { content: @fa-var-key; }
|
||||
.@{fa-css-prefix}-gears:before,
|
||||
.@{fa-css-prefix}-cogs:before { content: @fa-var-cogs; }
|
||||
.@{fa-css-prefix}-comments:before { content: @fa-var-comments; }
|
||||
.@{fa-css-prefix}-thumbs-o-up:before { content: @fa-var-thumbs-o-up; }
|
||||
.@{fa-css-prefix}-thumbs-o-down:before { content: @fa-var-thumbs-o-down; }
|
||||
.@{fa-css-prefix}-star-half:before { content: @fa-var-star-half; }
|
||||
.@{fa-css-prefix}-heart-o:before { content: @fa-var-heart-o; }
|
||||
.@{fa-css-prefix}-sign-out:before { content: @fa-var-sign-out; }
|
||||
.@{fa-css-prefix}-linkedin-square:before { content: @fa-var-linkedin-square; }
|
||||
.@{fa-css-prefix}-thumb-tack:before { content: @fa-var-thumb-tack; }
|
||||
.@{fa-css-prefix}-external-link:before { content: @fa-var-external-link; }
|
||||
.@{fa-css-prefix}-sign-in:before { content: @fa-var-sign-in; }
|
||||
.@{fa-css-prefix}-trophy:before { content: @fa-var-trophy; }
|
||||
.@{fa-css-prefix}-github-square:before { content: @fa-var-github-square; }
|
||||
.@{fa-css-prefix}-upload:before { content: @fa-var-upload; }
|
||||
.@{fa-css-prefix}-lemon-o:before { content: @fa-var-lemon-o; }
|
||||
.@{fa-css-prefix}-phone:before { content: @fa-var-phone; }
|
||||
.@{fa-css-prefix}-square-o:before { content: @fa-var-square-o; }
|
||||
.@{fa-css-prefix}-bookmark-o:before { content: @fa-var-bookmark-o; }
|
||||
.@{fa-css-prefix}-phone-square:before { content: @fa-var-phone-square; }
|
||||
.@{fa-css-prefix}-twitter:before { content: @fa-var-twitter; }
|
||||
.@{fa-css-prefix}-facebook-f:before,
|
||||
.@{fa-css-prefix}-facebook:before { content: @fa-var-facebook; }
|
||||
.@{fa-css-prefix}-github:before { content: @fa-var-github; }
|
||||
.@{fa-css-prefix}-unlock:before { content: @fa-var-unlock; }
|
||||
.@{fa-css-prefix}-credit-card:before { content: @fa-var-credit-card; }
|
||||
.@{fa-css-prefix}-feed:before,
|
||||
.@{fa-css-prefix}-rss:before { content: @fa-var-rss; }
|
||||
.@{fa-css-prefix}-hdd-o:before { content: @fa-var-hdd-o; }
|
||||
.@{fa-css-prefix}-bullhorn:before { content: @fa-var-bullhorn; }
|
||||
.@{fa-css-prefix}-bell:before { content: @fa-var-bell; }
|
||||
.@{fa-css-prefix}-certificate:before { content: @fa-var-certificate; }
|
||||
.@{fa-css-prefix}-hand-o-right:before { content: @fa-var-hand-o-right; }
|
||||
.@{fa-css-prefix}-hand-o-left:before { content: @fa-var-hand-o-left; }
|
||||
.@{fa-css-prefix}-hand-o-up:before { content: @fa-var-hand-o-up; }
|
||||
.@{fa-css-prefix}-hand-o-down:before { content: @fa-var-hand-o-down; }
|
||||
.@{fa-css-prefix}-arrow-circle-left:before { content: @fa-var-arrow-circle-left; }
|
||||
.@{fa-css-prefix}-arrow-circle-right:before { content: @fa-var-arrow-circle-right; }
|
||||
.@{fa-css-prefix}-arrow-circle-up:before { content: @fa-var-arrow-circle-up; }
|
||||
.@{fa-css-prefix}-arrow-circle-down:before { content: @fa-var-arrow-circle-down; }
|
||||
.@{fa-css-prefix}-globe:before { content: @fa-var-globe; }
|
||||
.@{fa-css-prefix}-wrench:before { content: @fa-var-wrench; }
|
||||
.@{fa-css-prefix}-tasks:before { content: @fa-var-tasks; }
|
||||
.@{fa-css-prefix}-filter:before { content: @fa-var-filter; }
|
||||
.@{fa-css-prefix}-briefcase:before { content: @fa-var-briefcase; }
|
||||
.@{fa-css-prefix}-arrows-alt:before { content: @fa-var-arrows-alt; }
|
||||
.@{fa-css-prefix}-group:before,
|
||||
.@{fa-css-prefix}-users:before { content: @fa-var-users; }
|
||||
.@{fa-css-prefix}-chain:before,
|
||||
.@{fa-css-prefix}-link:before { content: @fa-var-link; }
|
||||
.@{fa-css-prefix}-cloud:before { content: @fa-var-cloud; }
|
||||
.@{fa-css-prefix}-flask:before { content: @fa-var-flask; }
|
||||
.@{fa-css-prefix}-cut:before,
|
||||
.@{fa-css-prefix}-scissors:before { content: @fa-var-scissors; }
|
||||
.@{fa-css-prefix}-copy:before,
|
||||
.@{fa-css-prefix}-files-o:before { content: @fa-var-files-o; }
|
||||
.@{fa-css-prefix}-paperclip:before { content: @fa-var-paperclip; }
|
||||
.@{fa-css-prefix}-save:before,
|
||||
.@{fa-css-prefix}-floppy-o:before { content: @fa-var-floppy-o; }
|
||||
.@{fa-css-prefix}-square:before { content: @fa-var-square; }
|
||||
.@{fa-css-prefix}-navicon:before,
|
||||
.@{fa-css-prefix}-reorder:before,
|
||||
.@{fa-css-prefix}-bars:before { content: @fa-var-bars; }
|
||||
.@{fa-css-prefix}-list-ul:before { content: @fa-var-list-ul; }
|
||||
.@{fa-css-prefix}-list-ol:before { content: @fa-var-list-ol; }
|
||||
.@{fa-css-prefix}-strikethrough:before { content: @fa-var-strikethrough; }
|
||||
.@{fa-css-prefix}-underline:before { content: @fa-var-underline; }
|
||||
.@{fa-css-prefix}-table:before { content: @fa-var-table; }
|
||||
.@{fa-css-prefix}-magic:before { content: @fa-var-magic; }
|
||||
.@{fa-css-prefix}-truck:before { content: @fa-var-truck; }
|
||||
.@{fa-css-prefix}-pinterest:before { content: @fa-var-pinterest; }
|
||||
.@{fa-css-prefix}-pinterest-square:before { content: @fa-var-pinterest-square; }
|
||||
.@{fa-css-prefix}-google-plus-square:before { content: @fa-var-google-plus-square; }
|
||||
.@{fa-css-prefix}-google-plus:before { content: @fa-var-google-plus; }
|
||||
.@{fa-css-prefix}-money:before { content: @fa-var-money; }
|
||||
.@{fa-css-prefix}-caret-down:before { content: @fa-var-caret-down; }
|
||||
.@{fa-css-prefix}-caret-up:before { content: @fa-var-caret-up; }
|
||||
.@{fa-css-prefix}-caret-left:before { content: @fa-var-caret-left; }
|
||||
.@{fa-css-prefix}-caret-right:before { content: @fa-var-caret-right; }
|
||||
.@{fa-css-prefix}-columns:before { content: @fa-var-columns; }
|
||||
.@{fa-css-prefix}-unsorted:before,
|
||||
.@{fa-css-prefix}-sort:before { content: @fa-var-sort; }
|
||||
.@{fa-css-prefix}-sort-down:before,
|
||||
.@{fa-css-prefix}-sort-desc:before { content: @fa-var-sort-desc; }
|
||||
.@{fa-css-prefix}-sort-up:before,
|
||||
.@{fa-css-prefix}-sort-asc:before { content: @fa-var-sort-asc; }
|
||||
.@{fa-css-prefix}-envelope:before { content: @fa-var-envelope; }
|
||||
.@{fa-css-prefix}-linkedin:before { content: @fa-var-linkedin; }
|
||||
.@{fa-css-prefix}-rotate-left:before,
|
||||
.@{fa-css-prefix}-undo:before { content: @fa-var-undo; }
|
||||
.@{fa-css-prefix}-legal:before,
|
||||
.@{fa-css-prefix}-gavel:before { content: @fa-var-gavel; }
|
||||
.@{fa-css-prefix}-dashboard:before,
|
||||
.@{fa-css-prefix}-tachometer:before { content: @fa-var-tachometer; }
|
||||
.@{fa-css-prefix}-comment-o:before { content: @fa-var-comment-o; }
|
||||
.@{fa-css-prefix}-comments-o:before { content: @fa-var-comments-o; }
|
||||
.@{fa-css-prefix}-flash:before,
|
||||
.@{fa-css-prefix}-bolt:before { content: @fa-var-bolt; }
|
||||
.@{fa-css-prefix}-sitemap:before { content: @fa-var-sitemap; }
|
||||
.@{fa-css-prefix}-umbrella:before { content: @fa-var-umbrella; }
|
||||
.@{fa-css-prefix}-paste:before,
|
||||
.@{fa-css-prefix}-clipboard:before { content: @fa-var-clipboard; }
|
||||
.@{fa-css-prefix}-lightbulb-o:before { content: @fa-var-lightbulb-o; }
|
||||
.@{fa-css-prefix}-exchange:before { content: @fa-var-exchange; }
|
||||
.@{fa-css-prefix}-cloud-download:before { content: @fa-var-cloud-download; }
|
||||
.@{fa-css-prefix}-cloud-upload:before { content: @fa-var-cloud-upload; }
|
||||
.@{fa-css-prefix}-user-md:before { content: @fa-var-user-md; }
|
||||
.@{fa-css-prefix}-stethoscope:before { content: @fa-var-stethoscope; }
|
||||
.@{fa-css-prefix}-suitcase:before { content: @fa-var-suitcase; }
|
||||
.@{fa-css-prefix}-bell-o:before { content: @fa-var-bell-o; }
|
||||
.@{fa-css-prefix}-coffee:before { content: @fa-var-coffee; }
|
||||
.@{fa-css-prefix}-cutlery:before { content: @fa-var-cutlery; }
|
||||
.@{fa-css-prefix}-file-text-o:before { content: @fa-var-file-text-o; }
|
||||
.@{fa-css-prefix}-building-o:before { content: @fa-var-building-o; }
|
||||
.@{fa-css-prefix}-hospital-o:before { content: @fa-var-hospital-o; }
|
||||
.@{fa-css-prefix}-ambulance:before { content: @fa-var-ambulance; }
|
||||
.@{fa-css-prefix}-medkit:before { content: @fa-var-medkit; }
|
||||
.@{fa-css-prefix}-fighter-jet:before { content: @fa-var-fighter-jet; }
|
||||
.@{fa-css-prefix}-beer:before { content: @fa-var-beer; }
|
||||
.@{fa-css-prefix}-h-square:before { content: @fa-var-h-square; }
|
||||
.@{fa-css-prefix}-plus-square:before { content: @fa-var-plus-square; }
|
||||
.@{fa-css-prefix}-angle-double-left:before { content: @fa-var-angle-double-left; }
|
||||
.@{fa-css-prefix}-angle-double-right:before { content: @fa-var-angle-double-right; }
|
||||
.@{fa-css-prefix}-angle-double-up:before { content: @fa-var-angle-double-up; }
|
||||
.@{fa-css-prefix}-angle-double-down:before { content: @fa-var-angle-double-down; }
|
||||
.@{fa-css-prefix}-angle-left:before { content: @fa-var-angle-left; }
|
||||
.@{fa-css-prefix}-angle-right:before { content: @fa-var-angle-right; }
|
||||
.@{fa-css-prefix}-angle-up:before { content: @fa-var-angle-up; }
|
||||
.@{fa-css-prefix}-angle-down:before { content: @fa-var-angle-down; }
|
||||
.@{fa-css-prefix}-desktop:before { content: @fa-var-desktop; }
|
||||
.@{fa-css-prefix}-laptop:before { content: @fa-var-laptop; }
|
||||
.@{fa-css-prefix}-tablet:before { content: @fa-var-tablet; }
|
||||
.@{fa-css-prefix}-mobile-phone:before,
|
||||
.@{fa-css-prefix}-mobile:before { content: @fa-var-mobile; }
|
||||
.@{fa-css-prefix}-circle-o:before { content: @fa-var-circle-o; }
|
||||
.@{fa-css-prefix}-quote-left:before { content: @fa-var-quote-left; }
|
||||
.@{fa-css-prefix}-quote-right:before { content: @fa-var-quote-right; }
|
||||
.@{fa-css-prefix}-spinner:before { content: @fa-var-spinner; }
|
||||
.@{fa-css-prefix}-circle:before { content: @fa-var-circle; }
|
||||
.@{fa-css-prefix}-mail-reply:before,
|
||||
.@{fa-css-prefix}-reply:before { content: @fa-var-reply; }
|
||||
.@{fa-css-prefix}-github-alt:before { content: @fa-var-github-alt; }
|
||||
.@{fa-css-prefix}-folder-o:before { content: @fa-var-folder-o; }
|
||||
.@{fa-css-prefix}-folder-open-o:before { content: @fa-var-folder-open-o; }
|
||||
.@{fa-css-prefix}-smile-o:before { content: @fa-var-smile-o; }
|
||||
.@{fa-css-prefix}-frown-o:before { content: @fa-var-frown-o; }
|
||||
.@{fa-css-prefix}-meh-o:before { content: @fa-var-meh-o; }
|
||||
.@{fa-css-prefix}-gamepad:before { content: @fa-var-gamepad; }
|
||||
.@{fa-css-prefix}-keyboard-o:before { content: @fa-var-keyboard-o; }
|
||||
.@{fa-css-prefix}-flag-o:before { content: @fa-var-flag-o; }
|
||||
.@{fa-css-prefix}-flag-checkered:before { content: @fa-var-flag-checkered; }
|
||||
.@{fa-css-prefix}-terminal:before { content: @fa-var-terminal; }
|
||||
.@{fa-css-prefix}-code:before { content: @fa-var-code; }
|
||||
.@{fa-css-prefix}-mail-reply-all:before,
|
||||
.@{fa-css-prefix}-reply-all:before { content: @fa-var-reply-all; }
|
||||
.@{fa-css-prefix}-star-half-empty:before,
|
||||
.@{fa-css-prefix}-star-half-full:before,
|
||||
.@{fa-css-prefix}-star-half-o:before { content: @fa-var-star-half-o; }
|
||||
.@{fa-css-prefix}-location-arrow:before { content: @fa-var-location-arrow; }
|
||||
.@{fa-css-prefix}-crop:before { content: @fa-var-crop; }
|
||||
.@{fa-css-prefix}-code-fork:before { content: @fa-var-code-fork; }
|
||||
.@{fa-css-prefix}-unlink:before,
|
||||
.@{fa-css-prefix}-chain-broken:before { content: @fa-var-chain-broken; }
|
||||
.@{fa-css-prefix}-question:before { content: @fa-var-question; }
|
||||
.@{fa-css-prefix}-info:before { content: @fa-var-info; }
|
||||
.@{fa-css-prefix}-exclamation:before { content: @fa-var-exclamation; }
|
||||
.@{fa-css-prefix}-superscript:before { content: @fa-var-superscript; }
|
||||
.@{fa-css-prefix}-subscript:before { content: @fa-var-subscript; }
|
||||
.@{fa-css-prefix}-eraser:before { content: @fa-var-eraser; }
|
||||
.@{fa-css-prefix}-puzzle-piece:before { content: @fa-var-puzzle-piece; }
|
||||
.@{fa-css-prefix}-microphone:before { content: @fa-var-microphone; }
|
||||
.@{fa-css-prefix}-microphone-slash:before { content: @fa-var-microphone-slash; }
|
||||
.@{fa-css-prefix}-shield:before { content: @fa-var-shield; }
|
||||
.@{fa-css-prefix}-calendar-o:before { content: @fa-var-calendar-o; }
|
||||
.@{fa-css-prefix}-fire-extinguisher:before { content: @fa-var-fire-extinguisher; }
|
||||
.@{fa-css-prefix}-rocket:before { content: @fa-var-rocket; }
|
||||
.@{fa-css-prefix}-maxcdn:before { content: @fa-var-maxcdn; }
|
||||
.@{fa-css-prefix}-chevron-circle-left:before { content: @fa-var-chevron-circle-left; }
|
||||
.@{fa-css-prefix}-chevron-circle-right:before { content: @fa-var-chevron-circle-right; }
|
||||
.@{fa-css-prefix}-chevron-circle-up:before { content: @fa-var-chevron-circle-up; }
|
||||
.@{fa-css-prefix}-chevron-circle-down:before { content: @fa-var-chevron-circle-down; }
|
||||
.@{fa-css-prefix}-html5:before { content: @fa-var-html5; }
|
||||
.@{fa-css-prefix}-css3:before { content: @fa-var-css3; }
|
||||
.@{fa-css-prefix}-anchor:before { content: @fa-var-anchor; }
|
||||
.@{fa-css-prefix}-unlock-alt:before { content: @fa-var-unlock-alt; }
|
||||
.@{fa-css-prefix}-bullseye:before { content: @fa-var-bullseye; }
|
||||
.@{fa-css-prefix}-ellipsis-h:before { content: @fa-var-ellipsis-h; }
|
||||
.@{fa-css-prefix}-ellipsis-v:before { content: @fa-var-ellipsis-v; }
|
||||
.@{fa-css-prefix}-rss-square:before { content: @fa-var-rss-square; }
|
||||
.@{fa-css-prefix}-play-circle:before { content: @fa-var-play-circle; }
|
||||
.@{fa-css-prefix}-ticket:before { content: @fa-var-ticket; }
|
||||
.@{fa-css-prefix}-minus-square:before { content: @fa-var-minus-square; }
|
||||
.@{fa-css-prefix}-minus-square-o:before { content: @fa-var-minus-square-o; }
|
||||
.@{fa-css-prefix}-level-up:before { content: @fa-var-level-up; }
|
||||
.@{fa-css-prefix}-level-down:before { content: @fa-var-level-down; }
|
||||
.@{fa-css-prefix}-check-square:before { content: @fa-var-check-square; }
|
||||
.@{fa-css-prefix}-pencil-square:before { content: @fa-var-pencil-square; }
|
||||
.@{fa-css-prefix}-external-link-square:before { content: @fa-var-external-link-square; }
|
||||
.@{fa-css-prefix}-share-square:before { content: @fa-var-share-square; }
|
||||
.@{fa-css-prefix}-compass:before { content: @fa-var-compass; }
|
||||
.@{fa-css-prefix}-toggle-down:before,
|
||||
.@{fa-css-prefix}-caret-square-o-down:before { content: @fa-var-caret-square-o-down; }
|
||||
.@{fa-css-prefix}-toggle-up:before,
|
||||
.@{fa-css-prefix}-caret-square-o-up:before { content: @fa-var-caret-square-o-up; }
|
||||
.@{fa-css-prefix}-toggle-right:before,
|
||||
.@{fa-css-prefix}-caret-square-o-right:before { content: @fa-var-caret-square-o-right; }
|
||||
.@{fa-css-prefix}-euro:before,
|
||||
.@{fa-css-prefix}-eur:before { content: @fa-var-eur; }
|
||||
.@{fa-css-prefix}-gbp:before { content: @fa-var-gbp; }
|
||||
.@{fa-css-prefix}-dollar:before,
|
||||
.@{fa-css-prefix}-usd:before { content: @fa-var-usd; }
|
||||
.@{fa-css-prefix}-rupee:before,
|
||||
.@{fa-css-prefix}-inr:before { content: @fa-var-inr; }
|
||||
.@{fa-css-prefix}-cny:before,
|
||||
.@{fa-css-prefix}-rmb:before,
|
||||
.@{fa-css-prefix}-yen:before,
|
||||
.@{fa-css-prefix}-jpy:before { content: @fa-var-jpy; }
|
||||
.@{fa-css-prefix}-ruble:before,
|
||||
.@{fa-css-prefix}-rouble:before,
|
||||
.@{fa-css-prefix}-rub:before { content: @fa-var-rub; }
|
||||
.@{fa-css-prefix}-won:before,
|
||||
.@{fa-css-prefix}-krw:before { content: @fa-var-krw; }
|
||||
.@{fa-css-prefix}-bitcoin:before,
|
||||
.@{fa-css-prefix}-btc:before { content: @fa-var-btc; }
|
||||
.@{fa-css-prefix}-file:before { content: @fa-var-file; }
|
||||
.@{fa-css-prefix}-file-text:before { content: @fa-var-file-text; }
|
||||
.@{fa-css-prefix}-sort-alpha-asc:before { content: @fa-var-sort-alpha-asc; }
|
||||
.@{fa-css-prefix}-sort-alpha-desc:before { content: @fa-var-sort-alpha-desc; }
|
||||
.@{fa-css-prefix}-sort-amount-asc:before { content: @fa-var-sort-amount-asc; }
|
||||
.@{fa-css-prefix}-sort-amount-desc:before { content: @fa-var-sort-amount-desc; }
|
||||
.@{fa-css-prefix}-sort-numeric-asc:before { content: @fa-var-sort-numeric-asc; }
|
||||
.@{fa-css-prefix}-sort-numeric-desc:before { content: @fa-var-sort-numeric-desc; }
|
||||
.@{fa-css-prefix}-thumbs-up:before { content: @fa-var-thumbs-up; }
|
||||
.@{fa-css-prefix}-thumbs-down:before { content: @fa-var-thumbs-down; }
|
||||
.@{fa-css-prefix}-youtube-square:before { content: @fa-var-youtube-square; }
|
||||
.@{fa-css-prefix}-youtube:before { content: @fa-var-youtube; }
|
||||
.@{fa-css-prefix}-xing:before { content: @fa-var-xing; }
|
||||
.@{fa-css-prefix}-xing-square:before { content: @fa-var-xing-square; }
|
||||
.@{fa-css-prefix}-youtube-play:before { content: @fa-var-youtube-play; }
|
||||
.@{fa-css-prefix}-dropbox:before { content: @fa-var-dropbox; }
|
||||
.@{fa-css-prefix}-stack-overflow:before { content: @fa-var-stack-overflow; }
|
||||
.@{fa-css-prefix}-instagram:before { content: @fa-var-instagram; }
|
||||
.@{fa-css-prefix}-flickr:before { content: @fa-var-flickr; }
|
||||
.@{fa-css-prefix}-adn:before { content: @fa-var-adn; }
|
||||
.@{fa-css-prefix}-bitbucket:before { content: @fa-var-bitbucket; }
|
||||
.@{fa-css-prefix}-bitbucket-square:before { content: @fa-var-bitbucket-square; }
|
||||
.@{fa-css-prefix}-tumblr:before { content: @fa-var-tumblr; }
|
||||
.@{fa-css-prefix}-tumblr-square:before { content: @fa-var-tumblr-square; }
|
||||
.@{fa-css-prefix}-long-arrow-down:before { content: @fa-var-long-arrow-down; }
|
||||
.@{fa-css-prefix}-long-arrow-up:before { content: @fa-var-long-arrow-up; }
|
||||
.@{fa-css-prefix}-long-arrow-left:before { content: @fa-var-long-arrow-left; }
|
||||
.@{fa-css-prefix}-long-arrow-right:before { content: @fa-var-long-arrow-right; }
|
||||
.@{fa-css-prefix}-apple:before { content: @fa-var-apple; }
|
||||
.@{fa-css-prefix}-windows:before { content: @fa-var-windows; }
|
||||
.@{fa-css-prefix}-android:before { content: @fa-var-android; }
|
||||
.@{fa-css-prefix}-linux:before { content: @fa-var-linux; }
|
||||
.@{fa-css-prefix}-dribbble:before { content: @fa-var-dribbble; }
|
||||
.@{fa-css-prefix}-skype:before { content: @fa-var-skype; }
|
||||
.@{fa-css-prefix}-foursquare:before { content: @fa-var-foursquare; }
|
||||
.@{fa-css-prefix}-trello:before { content: @fa-var-trello; }
|
||||
.@{fa-css-prefix}-female:before { content: @fa-var-female; }
|
||||
.@{fa-css-prefix}-male:before { content: @fa-var-male; }
|
||||
.@{fa-css-prefix}-gittip:before,
|
||||
.@{fa-css-prefix}-gratipay:before { content: @fa-var-gratipay; }
|
||||
.@{fa-css-prefix}-sun-o:before { content: @fa-var-sun-o; }
|
||||
.@{fa-css-prefix}-moon-o:before { content: @fa-var-moon-o; }
|
||||
.@{fa-css-prefix}-archive:before { content: @fa-var-archive; }
|
||||
.@{fa-css-prefix}-bug:before { content: @fa-var-bug; }
|
||||
.@{fa-css-prefix}-vk:before { content: @fa-var-vk; }
|
||||
.@{fa-css-prefix}-weibo:before { content: @fa-var-weibo; }
|
||||
.@{fa-css-prefix}-renren:before { content: @fa-var-renren; }
|
||||
.@{fa-css-prefix}-pagelines:before { content: @fa-var-pagelines; }
|
||||
.@{fa-css-prefix}-stack-exchange:before { content: @fa-var-stack-exchange; }
|
||||
.@{fa-css-prefix}-arrow-circle-o-right:before { content: @fa-var-arrow-circle-o-right; }
|
||||
.@{fa-css-prefix}-arrow-circle-o-left:before { content: @fa-var-arrow-circle-o-left; }
|
||||
.@{fa-css-prefix}-toggle-left:before,
|
||||
.@{fa-css-prefix}-caret-square-o-left:before { content: @fa-var-caret-square-o-left; }
|
||||
.@{fa-css-prefix}-dot-circle-o:before { content: @fa-var-dot-circle-o; }
|
||||
.@{fa-css-prefix}-wheelchair:before { content: @fa-var-wheelchair; }
|
||||
.@{fa-css-prefix}-vimeo-square:before { content: @fa-var-vimeo-square; }
|
||||
.@{fa-css-prefix}-turkish-lira:before,
|
||||
.@{fa-css-prefix}-try:before { content: @fa-var-try; }
|
||||
.@{fa-css-prefix}-plus-square-o:before { content: @fa-var-plus-square-o; }
|
||||
.@{fa-css-prefix}-space-shuttle:before { content: @fa-var-space-shuttle; }
|
||||
.@{fa-css-prefix}-slack:before { content: @fa-var-slack; }
|
||||
.@{fa-css-prefix}-envelope-square:before { content: @fa-var-envelope-square; }
|
||||
.@{fa-css-prefix}-wordpress:before { content: @fa-var-wordpress; }
|
||||
.@{fa-css-prefix}-openid:before { content: @fa-var-openid; }
|
||||
.@{fa-css-prefix}-institution:before,
|
||||
.@{fa-css-prefix}-bank:before,
|
||||
.@{fa-css-prefix}-university:before { content: @fa-var-university; }
|
||||
.@{fa-css-prefix}-mortar-board:before,
|
||||
.@{fa-css-prefix}-graduation-cap:before { content: @fa-var-graduation-cap; }
|
||||
.@{fa-css-prefix}-yahoo:before { content: @fa-var-yahoo; }
|
||||
.@{fa-css-prefix}-google:before { content: @fa-var-google; }
|
||||
.@{fa-css-prefix}-reddit:before { content: @fa-var-reddit; }
|
||||
.@{fa-css-prefix}-reddit-square:before { content: @fa-var-reddit-square; }
|
||||
.@{fa-css-prefix}-stumbleupon-circle:before { content: @fa-var-stumbleupon-circle; }
|
||||
.@{fa-css-prefix}-stumbleupon:before { content: @fa-var-stumbleupon; }
|
||||
.@{fa-css-prefix}-delicious:before { content: @fa-var-delicious; }
|
||||
.@{fa-css-prefix}-digg:before { content: @fa-var-digg; }
|
||||
.@{fa-css-prefix}-pied-piper-pp:before { content: @fa-var-pied-piper-pp; }
|
||||
.@{fa-css-prefix}-pied-piper-alt:before { content: @fa-var-pied-piper-alt; }
|
||||
.@{fa-css-prefix}-drupal:before { content: @fa-var-drupal; }
|
||||
.@{fa-css-prefix}-joomla:before { content: @fa-var-joomla; }
|
||||
.@{fa-css-prefix}-language:before { content: @fa-var-language; }
|
||||
.@{fa-css-prefix}-fax:before { content: @fa-var-fax; }
|
||||
.@{fa-css-prefix}-building:before { content: @fa-var-building; }
|
||||
.@{fa-css-prefix}-child:before { content: @fa-var-child; }
|
||||
.@{fa-css-prefix}-paw:before { content: @fa-var-paw; }
|
||||
.@{fa-css-prefix}-spoon:before { content: @fa-var-spoon; }
|
||||
.@{fa-css-prefix}-cube:before { content: @fa-var-cube; }
|
||||
.@{fa-css-prefix}-cubes:before { content: @fa-var-cubes; }
|
||||
.@{fa-css-prefix}-behance:before { content: @fa-var-behance; }
|
||||
.@{fa-css-prefix}-behance-square:before { content: @fa-var-behance-square; }
|
||||
.@{fa-css-prefix}-steam:before { content: @fa-var-steam; }
|
||||
.@{fa-css-prefix}-steam-square:before { content: @fa-var-steam-square; }
|
||||
.@{fa-css-prefix}-recycle:before { content: @fa-var-recycle; }
|
||||
.@{fa-css-prefix}-automobile:before,
|
||||
.@{fa-css-prefix}-car:before { content: @fa-var-car; }
|
||||
.@{fa-css-prefix}-cab:before,
|
||||
.@{fa-css-prefix}-taxi:before { content: @fa-var-taxi; }
|
||||
.@{fa-css-prefix}-tree:before { content: @fa-var-tree; }
|
||||
.@{fa-css-prefix}-spotify:before { content: @fa-var-spotify; }
|
||||
.@{fa-css-prefix}-deviantart:before { content: @fa-var-deviantart; }
|
||||
.@{fa-css-prefix}-soundcloud:before { content: @fa-var-soundcloud; }
|
||||
.@{fa-css-prefix}-database:before { content: @fa-var-database; }
|
||||
.@{fa-css-prefix}-file-pdf-o:before { content: @fa-var-file-pdf-o; }
|
||||
.@{fa-css-prefix}-file-word-o:before { content: @fa-var-file-word-o; }
|
||||
.@{fa-css-prefix}-file-excel-o:before { content: @fa-var-file-excel-o; }
|
||||
.@{fa-css-prefix}-file-powerpoint-o:before { content: @fa-var-file-powerpoint-o; }
|
||||
.@{fa-css-prefix}-file-photo-o:before,
|
||||
.@{fa-css-prefix}-file-picture-o:before,
|
||||
.@{fa-css-prefix}-file-image-o:before { content: @fa-var-file-image-o; }
|
||||
.@{fa-css-prefix}-file-zip-o:before,
|
||||
.@{fa-css-prefix}-file-archive-o:before { content: @fa-var-file-archive-o; }
|
||||
.@{fa-css-prefix}-file-sound-o:before,
|
||||
.@{fa-css-prefix}-file-audio-o:before { content: @fa-var-file-audio-o; }
|
||||
.@{fa-css-prefix}-file-movie-o:before,
|
||||
.@{fa-css-prefix}-file-video-o:before { content: @fa-var-file-video-o; }
|
||||
.@{fa-css-prefix}-file-code-o:before { content: @fa-var-file-code-o; }
|
||||
.@{fa-css-prefix}-vine:before { content: @fa-var-vine; }
|
||||
.@{fa-css-prefix}-codepen:before { content: @fa-var-codepen; }
|
||||
.@{fa-css-prefix}-jsfiddle:before { content: @fa-var-jsfiddle; }
|
||||
.@{fa-css-prefix}-life-bouy:before,
|
||||
.@{fa-css-prefix}-life-buoy:before,
|
||||
.@{fa-css-prefix}-life-saver:before,
|
||||
.@{fa-css-prefix}-support:before,
|
||||
.@{fa-css-prefix}-life-ring:before { content: @fa-var-life-ring; }
|
||||
.@{fa-css-prefix}-circle-o-notch:before { content: @fa-var-circle-o-notch; }
|
||||
.@{fa-css-prefix}-ra:before,
|
||||
.@{fa-css-prefix}-resistance:before,
|
||||
.@{fa-css-prefix}-rebel:before { content: @fa-var-rebel; }
|
||||
.@{fa-css-prefix}-ge:before,
|
||||
.@{fa-css-prefix}-empire:before { content: @fa-var-empire; }
|
||||
.@{fa-css-prefix}-git-square:before { content: @fa-var-git-square; }
|
||||
.@{fa-css-prefix}-git:before { content: @fa-var-git; }
|
||||
.@{fa-css-prefix}-y-combinator-square:before,
|
||||
.@{fa-css-prefix}-yc-square:before,
|
||||
.@{fa-css-prefix}-hacker-news:before { content: @fa-var-hacker-news; }
|
||||
.@{fa-css-prefix}-tencent-weibo:before { content: @fa-var-tencent-weibo; }
|
||||
.@{fa-css-prefix}-qq:before { content: @fa-var-qq; }
|
||||
.@{fa-css-prefix}-wechat:before,
|
||||
.@{fa-css-prefix}-weixin:before { content: @fa-var-weixin; }
|
||||
.@{fa-css-prefix}-send:before,
|
||||
.@{fa-css-prefix}-paper-plane:before { content: @fa-var-paper-plane; }
|
||||
.@{fa-css-prefix}-send-o:before,
|
||||
.@{fa-css-prefix}-paper-plane-o:before { content: @fa-var-paper-plane-o; }
|
||||
.@{fa-css-prefix}-history:before { content: @fa-var-history; }
|
||||
.@{fa-css-prefix}-circle-thin:before { content: @fa-var-circle-thin; }
|
||||
.@{fa-css-prefix}-header:before { content: @fa-var-header; }
|
||||
.@{fa-css-prefix}-paragraph:before { content: @fa-var-paragraph; }
|
||||
.@{fa-css-prefix}-sliders:before { content: @fa-var-sliders; }
|
||||
.@{fa-css-prefix}-share-alt:before { content: @fa-var-share-alt; }
|
||||
.@{fa-css-prefix}-share-alt-square:before { content: @fa-var-share-alt-square; }
|
||||
.@{fa-css-prefix}-bomb:before { content: @fa-var-bomb; }
|
||||
.@{fa-css-prefix}-soccer-ball-o:before,
|
||||
.@{fa-css-prefix}-futbol-o:before { content: @fa-var-futbol-o; }
|
||||
.@{fa-css-prefix}-tty:before { content: @fa-var-tty; }
|
||||
.@{fa-css-prefix}-binoculars:before { content: @fa-var-binoculars; }
|
||||
.@{fa-css-prefix}-plug:before { content: @fa-var-plug; }
|
||||
.@{fa-css-prefix}-slideshare:before { content: @fa-var-slideshare; }
|
||||
.@{fa-css-prefix}-twitch:before { content: @fa-var-twitch; }
|
||||
.@{fa-css-prefix}-yelp:before { content: @fa-var-yelp; }
|
||||
.@{fa-css-prefix}-newspaper-o:before { content: @fa-var-newspaper-o; }
|
||||
.@{fa-css-prefix}-wifi:before { content: @fa-var-wifi; }
|
||||
.@{fa-css-prefix}-calculator:before { content: @fa-var-calculator; }
|
||||
.@{fa-css-prefix}-paypal:before { content: @fa-var-paypal; }
|
||||
.@{fa-css-prefix}-google-wallet:before { content: @fa-var-google-wallet; }
|
||||
.@{fa-css-prefix}-cc-visa:before { content: @fa-var-cc-visa; }
|
||||
.@{fa-css-prefix}-cc-mastercard:before { content: @fa-var-cc-mastercard; }
|
||||
.@{fa-css-prefix}-cc-discover:before { content: @fa-var-cc-discover; }
|
||||
.@{fa-css-prefix}-cc-amex:before { content: @fa-var-cc-amex; }
|
||||
.@{fa-css-prefix}-cc-paypal:before { content: @fa-var-cc-paypal; }
|
||||
.@{fa-css-prefix}-cc-stripe:before { content: @fa-var-cc-stripe; }
|
||||
.@{fa-css-prefix}-bell-slash:before { content: @fa-var-bell-slash; }
|
||||
.@{fa-css-prefix}-bell-slash-o:before { content: @fa-var-bell-slash-o; }
|
||||
.@{fa-css-prefix}-trash:before { content: @fa-var-trash; }
|
||||
.@{fa-css-prefix}-copyright:before { content: @fa-var-copyright; }
|
||||
.@{fa-css-prefix}-at:before { content: @fa-var-at; }
|
||||
.@{fa-css-prefix}-eyedropper:before { content: @fa-var-eyedropper; }
|
||||
.@{fa-css-prefix}-paint-brush:before { content: @fa-var-paint-brush; }
|
||||
.@{fa-css-prefix}-birthday-cake:before { content: @fa-var-birthday-cake; }
|
||||
.@{fa-css-prefix}-area-chart:before { content: @fa-var-area-chart; }
|
||||
.@{fa-css-prefix}-pie-chart:before { content: @fa-var-pie-chart; }
|
||||
.@{fa-css-prefix}-line-chart:before { content: @fa-var-line-chart; }
|
||||
.@{fa-css-prefix}-lastfm:before { content: @fa-var-lastfm; }
|
||||
.@{fa-css-prefix}-lastfm-square:before { content: @fa-var-lastfm-square; }
|
||||
.@{fa-css-prefix}-toggle-off:before { content: @fa-var-toggle-off; }
|
||||
.@{fa-css-prefix}-toggle-on:before { content: @fa-var-toggle-on; }
|
||||
.@{fa-css-prefix}-bicycle:before { content: @fa-var-bicycle; }
|
||||
.@{fa-css-prefix}-bus:before { content: @fa-var-bus; }
|
||||
.@{fa-css-prefix}-ioxhost:before { content: @fa-var-ioxhost; }
|
||||
.@{fa-css-prefix}-angellist:before { content: @fa-var-angellist; }
|
||||
.@{fa-css-prefix}-cc:before { content: @fa-var-cc; }
|
||||
.@{fa-css-prefix}-shekel:before,
|
||||
.@{fa-css-prefix}-sheqel:before,
|
||||
.@{fa-css-prefix}-ils:before { content: @fa-var-ils; }
|
||||
.@{fa-css-prefix}-meanpath:before { content: @fa-var-meanpath; }
|
||||
.@{fa-css-prefix}-buysellads:before { content: @fa-var-buysellads; }
|
||||
.@{fa-css-prefix}-connectdevelop:before { content: @fa-var-connectdevelop; }
|
||||
.@{fa-css-prefix}-dashcube:before { content: @fa-var-dashcube; }
|
||||
.@{fa-css-prefix}-forumbee:before { content: @fa-var-forumbee; }
|
||||
.@{fa-css-prefix}-leanpub:before { content: @fa-var-leanpub; }
|
||||
.@{fa-css-prefix}-sellsy:before { content: @fa-var-sellsy; }
|
||||
.@{fa-css-prefix}-shirtsinbulk:before { content: @fa-var-shirtsinbulk; }
|
||||
.@{fa-css-prefix}-simplybuilt:before { content: @fa-var-simplybuilt; }
|
||||
.@{fa-css-prefix}-skyatlas:before { content: @fa-var-skyatlas; }
|
||||
.@{fa-css-prefix}-cart-plus:before { content: @fa-var-cart-plus; }
|
||||
.@{fa-css-prefix}-cart-arrow-down:before { content: @fa-var-cart-arrow-down; }
|
||||
.@{fa-css-prefix}-diamond:before { content: @fa-var-diamond; }
|
||||
.@{fa-css-prefix}-ship:before { content: @fa-var-ship; }
|
||||
.@{fa-css-prefix}-user-secret:before { content: @fa-var-user-secret; }
|
||||
.@{fa-css-prefix}-motorcycle:before { content: @fa-var-motorcycle; }
|
||||
.@{fa-css-prefix}-street-view:before { content: @fa-var-street-view; }
|
||||
.@{fa-css-prefix}-heartbeat:before { content: @fa-var-heartbeat; }
|
||||
.@{fa-css-prefix}-venus:before { content: @fa-var-venus; }
|
||||
.@{fa-css-prefix}-mars:before { content: @fa-var-mars; }
|
||||
.@{fa-css-prefix}-mercury:before { content: @fa-var-mercury; }
|
||||
.@{fa-css-prefix}-intersex:before,
|
||||
.@{fa-css-prefix}-transgender:before { content: @fa-var-transgender; }
|
||||
.@{fa-css-prefix}-transgender-alt:before { content: @fa-var-transgender-alt; }
|
||||
.@{fa-css-prefix}-venus-double:before { content: @fa-var-venus-double; }
|
||||
.@{fa-css-prefix}-mars-double:before { content: @fa-var-mars-double; }
|
||||
.@{fa-css-prefix}-venus-mars:before { content: @fa-var-venus-mars; }
|
||||
.@{fa-css-prefix}-mars-stroke:before { content: @fa-var-mars-stroke; }
|
||||
.@{fa-css-prefix}-mars-stroke-v:before { content: @fa-var-mars-stroke-v; }
|
||||
.@{fa-css-prefix}-mars-stroke-h:before { content: @fa-var-mars-stroke-h; }
|
||||
.@{fa-css-prefix}-neuter:before { content: @fa-var-neuter; }
|
||||
.@{fa-css-prefix}-genderless:before { content: @fa-var-genderless; }
|
||||
.@{fa-css-prefix}-facebook-official:before { content: @fa-var-facebook-official; }
|
||||
.@{fa-css-prefix}-pinterest-p:before { content: @fa-var-pinterest-p; }
|
||||
.@{fa-css-prefix}-whatsapp:before { content: @fa-var-whatsapp; }
|
||||
.@{fa-css-prefix}-server:before { content: @fa-var-server; }
|
||||
.@{fa-css-prefix}-user-plus:before { content: @fa-var-user-plus; }
|
||||
.@{fa-css-prefix}-user-times:before { content: @fa-var-user-times; }
|
||||
.@{fa-css-prefix}-hotel:before,
|
||||
.@{fa-css-prefix}-bed:before { content: @fa-var-bed; }
|
||||
.@{fa-css-prefix}-viacoin:before { content: @fa-var-viacoin; }
|
||||
.@{fa-css-prefix}-train:before { content: @fa-var-train; }
|
||||
.@{fa-css-prefix}-subway:before { content: @fa-var-subway; }
|
||||
.@{fa-css-prefix}-medium:before { content: @fa-var-medium; }
|
||||
.@{fa-css-prefix}-yc:before,
|
||||
.@{fa-css-prefix}-y-combinator:before { content: @fa-var-y-combinator; }
|
||||
.@{fa-css-prefix}-optin-monster:before { content: @fa-var-optin-monster; }
|
||||
.@{fa-css-prefix}-opencart:before { content: @fa-var-opencart; }
|
||||
.@{fa-css-prefix}-expeditedssl:before { content: @fa-var-expeditedssl; }
|
||||
.@{fa-css-prefix}-battery-4:before,
|
||||
.@{fa-css-prefix}-battery:before,
|
||||
.@{fa-css-prefix}-battery-full:before { content: @fa-var-battery-full; }
|
||||
.@{fa-css-prefix}-battery-3:before,
|
||||
.@{fa-css-prefix}-battery-three-quarters:before { content: @fa-var-battery-three-quarters; }
|
||||
.@{fa-css-prefix}-battery-2:before,
|
||||
.@{fa-css-prefix}-battery-half:before { content: @fa-var-battery-half; }
|
||||
.@{fa-css-prefix}-battery-1:before,
|
||||
.@{fa-css-prefix}-battery-quarter:before { content: @fa-var-battery-quarter; }
|
||||
.@{fa-css-prefix}-battery-0:before,
|
||||
.@{fa-css-prefix}-battery-empty:before { content: @fa-var-battery-empty; }
|
||||
.@{fa-css-prefix}-mouse-pointer:before { content: @fa-var-mouse-pointer; }
|
||||
.@{fa-css-prefix}-i-cursor:before { content: @fa-var-i-cursor; }
|
||||
.@{fa-css-prefix}-object-group:before { content: @fa-var-object-group; }
|
||||
.@{fa-css-prefix}-object-ungroup:before { content: @fa-var-object-ungroup; }
|
||||
.@{fa-css-prefix}-sticky-note:before { content: @fa-var-sticky-note; }
|
||||
.@{fa-css-prefix}-sticky-note-o:before { content: @fa-var-sticky-note-o; }
|
||||
.@{fa-css-prefix}-cc-jcb:before { content: @fa-var-cc-jcb; }
|
||||
.@{fa-css-prefix}-cc-diners-club:before { content: @fa-var-cc-diners-club; }
|
||||
.@{fa-css-prefix}-clone:before { content: @fa-var-clone; }
|
||||
.@{fa-css-prefix}-balance-scale:before { content: @fa-var-balance-scale; }
|
||||
.@{fa-css-prefix}-hourglass-o:before { content: @fa-var-hourglass-o; }
|
||||
.@{fa-css-prefix}-hourglass-1:before,
|
||||
.@{fa-css-prefix}-hourglass-start:before { content: @fa-var-hourglass-start; }
|
||||
.@{fa-css-prefix}-hourglass-2:before,
|
||||
.@{fa-css-prefix}-hourglass-half:before { content: @fa-var-hourglass-half; }
|
||||
.@{fa-css-prefix}-hourglass-3:before,
|
||||
.@{fa-css-prefix}-hourglass-end:before { content: @fa-var-hourglass-end; }
|
||||
.@{fa-css-prefix}-hourglass:before { content: @fa-var-hourglass; }
|
||||
.@{fa-css-prefix}-hand-grab-o:before,
|
||||
.@{fa-css-prefix}-hand-rock-o:before { content: @fa-var-hand-rock-o; }
|
||||
.@{fa-css-prefix}-hand-stop-o:before,
|
||||
.@{fa-css-prefix}-hand-paper-o:before { content: @fa-var-hand-paper-o; }
|
||||
.@{fa-css-prefix}-hand-scissors-o:before { content: @fa-var-hand-scissors-o; }
|
||||
.@{fa-css-prefix}-hand-lizard-o:before { content: @fa-var-hand-lizard-o; }
|
||||
.@{fa-css-prefix}-hand-spock-o:before { content: @fa-var-hand-spock-o; }
|
||||
.@{fa-css-prefix}-hand-pointer-o:before { content: @fa-var-hand-pointer-o; }
|
||||
.@{fa-css-prefix}-hand-peace-o:before { content: @fa-var-hand-peace-o; }
|
||||
.@{fa-css-prefix}-trademark:before { content: @fa-var-trademark; }
|
||||
.@{fa-css-prefix}-registered:before { content: @fa-var-registered; }
|
||||
.@{fa-css-prefix}-creative-commons:before { content: @fa-var-creative-commons; }
|
||||
.@{fa-css-prefix}-gg:before { content: @fa-var-gg; }
|
||||
.@{fa-css-prefix}-gg-circle:before { content: @fa-var-gg-circle; }
|
||||
.@{fa-css-prefix}-tripadvisor:before { content: @fa-var-tripadvisor; }
|
||||
.@{fa-css-prefix}-odnoklassniki:before { content: @fa-var-odnoklassniki; }
|
||||
.@{fa-css-prefix}-odnoklassniki-square:before { content: @fa-var-odnoklassniki-square; }
|
||||
.@{fa-css-prefix}-get-pocket:before { content: @fa-var-get-pocket; }
|
||||
.@{fa-css-prefix}-wikipedia-w:before { content: @fa-var-wikipedia-w; }
|
||||
.@{fa-css-prefix}-safari:before { content: @fa-var-safari; }
|
||||
.@{fa-css-prefix}-chrome:before { content: @fa-var-chrome; }
|
||||
.@{fa-css-prefix}-firefox:before { content: @fa-var-firefox; }
|
||||
.@{fa-css-prefix}-opera:before { content: @fa-var-opera; }
|
||||
.@{fa-css-prefix}-internet-explorer:before { content: @fa-var-internet-explorer; }
|
||||
.@{fa-css-prefix}-tv:before,
|
||||
.@{fa-css-prefix}-television:before { content: @fa-var-television; }
|
||||
.@{fa-css-prefix}-contao:before { content: @fa-var-contao; }
|
||||
.@{fa-css-prefix}-500px:before { content: @fa-var-500px; }
|
||||
.@{fa-css-prefix}-amazon:before { content: @fa-var-amazon; }
|
||||
.@{fa-css-prefix}-calendar-plus-o:before { content: @fa-var-calendar-plus-o; }
|
||||
.@{fa-css-prefix}-calendar-minus-o:before { content: @fa-var-calendar-minus-o; }
|
||||
.@{fa-css-prefix}-calendar-times-o:before { content: @fa-var-calendar-times-o; }
|
||||
.@{fa-css-prefix}-calendar-check-o:before { content: @fa-var-calendar-check-o; }
|
||||
.@{fa-css-prefix}-industry:before { content: @fa-var-industry; }
|
||||
.@{fa-css-prefix}-map-pin:before { content: @fa-var-map-pin; }
|
||||
.@{fa-css-prefix}-map-signs:before { content: @fa-var-map-signs; }
|
||||
.@{fa-css-prefix}-map-o:before { content: @fa-var-map-o; }
|
||||
.@{fa-css-prefix}-map:before { content: @fa-var-map; }
|
||||
.@{fa-css-prefix}-commenting:before { content: @fa-var-commenting; }
|
||||
.@{fa-css-prefix}-commenting-o:before { content: @fa-var-commenting-o; }
|
||||
.@{fa-css-prefix}-houzz:before { content: @fa-var-houzz; }
|
||||
.@{fa-css-prefix}-vimeo:before { content: @fa-var-vimeo; }
|
||||
.@{fa-css-prefix}-black-tie:before { content: @fa-var-black-tie; }
|
||||
.@{fa-css-prefix}-fonticons:before { content: @fa-var-fonticons; }
|
||||
.@{fa-css-prefix}-reddit-alien:before { content: @fa-var-reddit-alien; }
|
||||
.@{fa-css-prefix}-edge:before { content: @fa-var-edge; }
|
||||
.@{fa-css-prefix}-credit-card-alt:before { content: @fa-var-credit-card-alt; }
|
||||
.@{fa-css-prefix}-codiepie:before { content: @fa-var-codiepie; }
|
||||
.@{fa-css-prefix}-modx:before { content: @fa-var-modx; }
|
||||
.@{fa-css-prefix}-fort-awesome:before { content: @fa-var-fort-awesome; }
|
||||
.@{fa-css-prefix}-usb:before { content: @fa-var-usb; }
|
||||
.@{fa-css-prefix}-product-hunt:before { content: @fa-var-product-hunt; }
|
||||
.@{fa-css-prefix}-mixcloud:before { content: @fa-var-mixcloud; }
|
||||
.@{fa-css-prefix}-scribd:before { content: @fa-var-scribd; }
|
||||
.@{fa-css-prefix}-pause-circle:before { content: @fa-var-pause-circle; }
|
||||
.@{fa-css-prefix}-pause-circle-o:before { content: @fa-var-pause-circle-o; }
|
||||
.@{fa-css-prefix}-stop-circle:before { content: @fa-var-stop-circle; }
|
||||
.@{fa-css-prefix}-stop-circle-o:before { content: @fa-var-stop-circle-o; }
|
||||
.@{fa-css-prefix}-shopping-bag:before { content: @fa-var-shopping-bag; }
|
||||
.@{fa-css-prefix}-shopping-basket:before { content: @fa-var-shopping-basket; }
|
||||
.@{fa-css-prefix}-hashtag:before { content: @fa-var-hashtag; }
|
||||
.@{fa-css-prefix}-bluetooth:before { content: @fa-var-bluetooth; }
|
||||
.@{fa-css-prefix}-bluetooth-b:before { content: @fa-var-bluetooth-b; }
|
||||
.@{fa-css-prefix}-percent:before { content: @fa-var-percent; }
|
||||
.@{fa-css-prefix}-gitlab:before { content: @fa-var-gitlab; }
|
||||
.@{fa-css-prefix}-wpbeginner:before { content: @fa-var-wpbeginner; }
|
||||
.@{fa-css-prefix}-wpforms:before { content: @fa-var-wpforms; }
|
||||
.@{fa-css-prefix}-envira:before { content: @fa-var-envira; }
|
||||
.@{fa-css-prefix}-universal-access:before { content: @fa-var-universal-access; }
|
||||
.@{fa-css-prefix}-wheelchair-alt:before { content: @fa-var-wheelchair-alt; }
|
||||
.@{fa-css-prefix}-question-circle-o:before { content: @fa-var-question-circle-o; }
|
||||
.@{fa-css-prefix}-blind:before { content: @fa-var-blind; }
|
||||
.@{fa-css-prefix}-audio-description:before { content: @fa-var-audio-description; }
|
||||
.@{fa-css-prefix}-volume-control-phone:before { content: @fa-var-volume-control-phone; }
|
||||
.@{fa-css-prefix}-braille:before { content: @fa-var-braille; }
|
||||
.@{fa-css-prefix}-assistive-listening-systems:before { content: @fa-var-assistive-listening-systems; }
|
||||
.@{fa-css-prefix}-asl-interpreting:before,
|
||||
.@{fa-css-prefix}-american-sign-language-interpreting:before { content: @fa-var-american-sign-language-interpreting; }
|
||||
.@{fa-css-prefix}-deafness:before,
|
||||
.@{fa-css-prefix}-hard-of-hearing:before,
|
||||
.@{fa-css-prefix}-deaf:before { content: @fa-var-deaf; }
|
||||
.@{fa-css-prefix}-glide:before { content: @fa-var-glide; }
|
||||
.@{fa-css-prefix}-glide-g:before { content: @fa-var-glide-g; }
|
||||
.@{fa-css-prefix}-signing:before,
|
||||
.@{fa-css-prefix}-sign-language:before { content: @fa-var-sign-language; }
|
||||
.@{fa-css-prefix}-low-vision:before { content: @fa-var-low-vision; }
|
||||
.@{fa-css-prefix}-viadeo:before { content: @fa-var-viadeo; }
|
||||
.@{fa-css-prefix}-viadeo-square:before { content: @fa-var-viadeo-square; }
|
||||
.@{fa-css-prefix}-snapchat:before { content: @fa-var-snapchat; }
|
||||
.@{fa-css-prefix}-snapchat-ghost:before { content: @fa-var-snapchat-ghost; }
|
||||
.@{fa-css-prefix}-snapchat-square:before { content: @fa-var-snapchat-square; }
|
||||
.@{fa-css-prefix}-pied-piper:before { content: @fa-var-pied-piper; }
|
||||
.@{fa-css-prefix}-first-order:before { content: @fa-var-first-order; }
|
||||
.@{fa-css-prefix}-yoast:before { content: @fa-var-yoast; }
|
||||
.@{fa-css-prefix}-themeisle:before { content: @fa-var-themeisle; }
|
||||
.@{fa-css-prefix}-google-plus-circle:before,
|
||||
.@{fa-css-prefix}-google-plus-official:before { content: @fa-var-google-plus-official; }
|
||||
.@{fa-css-prefix}-fa:before,
|
||||
.@{fa-css-prefix}-font-awesome:before { content: @fa-var-font-awesome; }
|
||||
.@{fa-css-prefix}-handshake-o:before { content: @fa-var-handshake-o; }
|
||||
.@{fa-css-prefix}-envelope-open:before { content: @fa-var-envelope-open; }
|
||||
.@{fa-css-prefix}-envelope-open-o:before { content: @fa-var-envelope-open-o; }
|
||||
.@{fa-css-prefix}-linode:before { content: @fa-var-linode; }
|
||||
.@{fa-css-prefix}-address-book:before { content: @fa-var-address-book; }
|
||||
.@{fa-css-prefix}-address-book-o:before { content: @fa-var-address-book-o; }
|
||||
.@{fa-css-prefix}-vcard:before,
|
||||
.@{fa-css-prefix}-address-card:before { content: @fa-var-address-card; }
|
||||
.@{fa-css-prefix}-vcard-o:before,
|
||||
.@{fa-css-prefix}-address-card-o:before { content: @fa-var-address-card-o; }
|
||||
.@{fa-css-prefix}-user-circle:before { content: @fa-var-user-circle; }
|
||||
.@{fa-css-prefix}-user-circle-o:before { content: @fa-var-user-circle-o; }
|
||||
.@{fa-css-prefix}-user-o:before { content: @fa-var-user-o; }
|
||||
.@{fa-css-prefix}-id-badge:before { content: @fa-var-id-badge; }
|
||||
.@{fa-css-prefix}-drivers-license:before,
|
||||
.@{fa-css-prefix}-id-card:before { content: @fa-var-id-card; }
|
||||
.@{fa-css-prefix}-drivers-license-o:before,
|
||||
.@{fa-css-prefix}-id-card-o:before { content: @fa-var-id-card-o; }
|
||||
.@{fa-css-prefix}-quora:before { content: @fa-var-quora; }
|
||||
.@{fa-css-prefix}-free-code-camp:before { content: @fa-var-free-code-camp; }
|
||||
.@{fa-css-prefix}-telegram:before { content: @fa-var-telegram; }
|
||||
.@{fa-css-prefix}-thermometer-4:before,
|
||||
.@{fa-css-prefix}-thermometer:before,
|
||||
.@{fa-css-prefix}-thermometer-full:before { content: @fa-var-thermometer-full; }
|
||||
.@{fa-css-prefix}-thermometer-3:before,
|
||||
.@{fa-css-prefix}-thermometer-three-quarters:before { content: @fa-var-thermometer-three-quarters; }
|
||||
.@{fa-css-prefix}-thermometer-2:before,
|
||||
.@{fa-css-prefix}-thermometer-half:before { content: @fa-var-thermometer-half; }
|
||||
.@{fa-css-prefix}-thermometer-1:before,
|
||||
.@{fa-css-prefix}-thermometer-quarter:before { content: @fa-var-thermometer-quarter; }
|
||||
.@{fa-css-prefix}-thermometer-0:before,
|
||||
.@{fa-css-prefix}-thermometer-empty:before { content: @fa-var-thermometer-empty; }
|
||||
.@{fa-css-prefix}-shower:before { content: @fa-var-shower; }
|
||||
.@{fa-css-prefix}-bathtub:before,
|
||||
.@{fa-css-prefix}-s15:before,
|
||||
.@{fa-css-prefix}-bath:before { content: @fa-var-bath; }
|
||||
.@{fa-css-prefix}-podcast:before { content: @fa-var-podcast; }
|
||||
.@{fa-css-prefix}-window-maximize:before { content: @fa-var-window-maximize; }
|
||||
.@{fa-css-prefix}-window-minimize:before { content: @fa-var-window-minimize; }
|
||||
.@{fa-css-prefix}-window-restore:before { content: @fa-var-window-restore; }
|
||||
.@{fa-css-prefix}-times-rectangle:before,
|
||||
.@{fa-css-prefix}-window-close:before { content: @fa-var-window-close; }
|
||||
.@{fa-css-prefix}-times-rectangle-o:before,
|
||||
.@{fa-css-prefix}-window-close-o:before { content: @fa-var-window-close-o; }
|
||||
.@{fa-css-prefix}-bandcamp:before { content: @fa-var-bandcamp; }
|
||||
.@{fa-css-prefix}-grav:before { content: @fa-var-grav; }
|
||||
.@{fa-css-prefix}-etsy:before { content: @fa-var-etsy; }
|
||||
.@{fa-css-prefix}-imdb:before { content: @fa-var-imdb; }
|
||||
.@{fa-css-prefix}-ravelry:before { content: @fa-var-ravelry; }
|
||||
.@{fa-css-prefix}-eercast:before { content: @fa-var-eercast; }
|
||||
.@{fa-css-prefix}-microchip:before { content: @fa-var-microchip; }
|
||||
.@{fa-css-prefix}-snowflake-o:before { content: @fa-var-snowflake-o; }
|
||||
.@{fa-css-prefix}-superpowers:before { content: @fa-var-superpowers; }
|
||||
.@{fa-css-prefix}-wpexplorer:before { content: @fa-var-wpexplorer; }
|
||||
.@{fa-css-prefix}-meetup:before { content: @fa-var-meetup; }
|
||||