diff --git a/Apollo/api/application/config/routes.php b/Apollo/api/application/config/routes.php index a91d9736..34c76765 100755 --- a/Apollo/api/application/config/routes.php +++ b/Apollo/api/application/config/routes.php @@ -191,6 +191,7 @@ $route['filterYear'] = 'Dashboard_Controller/filterYear'; /*login page announcement*/ $route['getLoginAnnouncementDetails'] = 'Login_Controller/getLoginAnnouncementDetails'; $route['VerifyEmpOTP'] = 'Login_Controller/VerifyEmpOTP'; +$route['mailto'] = 'Login_Controller/mailto'; /* status */ diff --git a/Apollo/api/application/controllers/Login_Controller.php b/Apollo/api/application/controllers/Login_Controller.php index ea1ceca3..4ac20c8c 100755 --- a/Apollo/api/application/controllers/Login_Controller.php +++ b/Apollo/api/application/controllers/Login_Controller.php @@ -30,6 +30,7 @@ class Login_Controller extends REST_Controller { $this->methods['login_post']['limit'] = 100; // 100 requests per hour per user/key $this->methods['login_delete']['limit'] = 50; // 50 requests per hour per user/key $this->load->model('Login_model', 'login_model'); + $this->load->model('Announcement_model', 'announcement_model'); } @@ -164,7 +165,31 @@ class Login_Controller extends REST_Controller { ], REST_Controller::HTTP_NOT_FOUND); // NOT_FOUND (404) being the HTTP response code } } + + public function mailto_post(){ +// echo('hi'); + $firstname = $this->post('firstname'); + $Comments =$this->post('Comments'); + $emailId =$this->post('emailId'); + $primaryPhone =$this->post('primaryPhone'); + + $getstudent = $this->login_model->mailto($firstname,$primaryPhone,$emailId,$Comments); + if ($getstudent) + { + // $getstudent['status'] = REST_Controller::HTTP_OK; + // Set the response and exit + $this->response($getstudent, REST_Controller::HTTP_OK); // OK (200) being the HTTP response code + } + else + { + // Set the response and exit + $this->response([ + 'message' => 'No users were found', + 'status' => REST_Controller::HTTP_NOT_FOUND + ], REST_Controller::HTTP_NOT_FOUND); // NOT_FOUND (404) being the HTTP response code + } + } public function changePasswordLogin_post() { diff --git a/Apollo/api/application/models/Hallticket_model.php b/Apollo/api/application/models/Hallticket_model.php index e079c629..1587c0e5 100644 --- a/Apollo/api/application/models/Hallticket_model.php +++ b/Apollo/api/application/models/Hallticket_model.php @@ -947,7 +947,7 @@ BalFees.semyr'); //attendance save data start - $this->saveDataForExamAttendance($UID,$courseID=null,$batch,$requestedBy,$branchId,$center,$data,$Course_array,$result_array); + // $this->saveDataForExamAttendance($UID,$courseID=null,$batch,$requestedBy,$branchId,$center,$data,$Course_array,$result_array); //attendance end diff --git a/Apollo/api/application/models/Login_model.php b/Apollo/api/application/models/Login_model.php index 6d74668d..6917fc4f 100755 --- a/Apollo/api/application/models/Login_model.php +++ b/Apollo/api/application/models/Login_model.php @@ -452,7 +452,40 @@ class Login_model extends CI_Model } + public function mailto($firstname,$primaryPhone,$emailId,$Comments){ + + // echo('SEND'); + $this->load->library('email'); + //SMTP & mail configuration + $config = array( + 'protocol' => 'smtp', + 'smtp_host' => 'smtp.sendgrid.net', + 'smtp_port' => 587, + 'smtp_user' => 'apikey', + 'smtp_pass' => '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', + 'mailtype' => 'html', + 'charset' => 'utf-8' + ); + $this->email->initialize($config); + $this->email->set_mailtype("html"); + $this->email->set_newline("\r\n"); + + $htmlContent ='Name'.' '.$firstname.'
'. 'ContactNumber'.' '. $primaryPhone .'
'.'EmailID' .' '.$emailId .'
'.'Comments'.' '.$Comments; + + $this->email->to('rajasamy1991@gmail.com'); + $this->email->from($emailId); + $subj = 'Student Enquiry'; + $this->email->subject($subj); + $this->email->message($htmlContent); + //Send email 1 + $result = $this->email->send(); + return $result; + + + + + } public function Emplogin($EmpID,$OTP,$Password) diff --git a/Apollo/api/application/models/Reports_model.php b/Apollo/api/application/models/Reports_model.php index 23bb9af3..bb6ff02b 100755 --- a/Apollo/api/application/models/Reports_model.php +++ b/Apollo/api/application/models/Reports_model.php @@ -1252,7 +1252,9 @@ T_Students_Fees_PaidDetails.FeesId=T_Registration_Details.Student_Fee_Status_Id T_Students_Fees_PaidDetails.Installment='1' left JOIN T_BatchMaster ON T_BatchMaster.BatchCode = T_Registration_Details.BatchCode -left JOIN T_StaffDetails ON T_StaffDetails.StaffID = T_StudentDetails.AdmittedBy + +left join T_Login on T_Login.id =T_Students_Fees_PaidDetails.CreatedBy +left JOIN T_StaffDetails ON T_StaffDetails.StaffID =T_Login.StaffID left JOIN T_Course_Fees_Details on T_Course_Fees_Details.ID=T_Registration_Details.FeeType and T_Course_Fees_Details.CourseID=T_Registration_Details.CourseID WHERE T_Registration_Details.RegistrationType = '".$regconst."' and T_Registration_Details.RegistrationMode='1' and T_Registration_Details.BranchCode= '".$branch."'"; @@ -1294,8 +1296,8 @@ $query = $this->db->query($subQuery,array('%d-%m-%Y')); $searchDetails =$query->result(); - //print_r( $this->db->last_query()); - //die(); + // print_r( $this->db->last_query()); + // die(); //print_r($searchDetails);die(); diff --git a/Apollo/assets/images/ksou.jpg b/Apollo/assets/images/ksou.jpg new file mode 100644 index 00000000..2895926f Binary files /dev/null and b/Apollo/assets/images/ksou.jpg differ diff --git a/Apollo/assets/images/ksou1.jpg b/Apollo/assets/images/ksou1.jpg new file mode 100644 index 00000000..1f17a7ff Binary files /dev/null and b/Apollo/assets/images/ksou1.jpg differ diff --git a/Apollo/assets/images/ku.jpg b/Apollo/assets/images/ku.jpg new file mode 100644 index 00000000..58d103aa Binary files /dev/null and b/Apollo/assets/images/ku.jpg differ diff --git a/Apollo/assets/images/ku1.jpg b/Apollo/assets/images/ku1.jpg new file mode 100644 index 00000000..b13934a7 Binary files /dev/null and b/Apollo/assets/images/ku1.jpg differ diff --git a/Apollo/assets/js/controllers/loginCtrl.js b/Apollo/assets/js/controllers/loginCtrl.js index 24be7a29..eb4a6317 100644 --- a/Apollo/assets/js/controllers/loginCtrl.js +++ b/Apollo/assets/js/controllers/loginCtrl.js @@ -435,10 +435,65 @@ $scope.EmpLogin=function(myModel) } } + // $scope.tempModel = "default"; + // $scope.mailto = function(data) + // { + // console.log("hi"); + // console.log(data); + // } + +$scope.mailto = function(data){ + // console.log('hi'); + // console.log(data); + + var firstname = data.firstname; + var primaryPhone = data.primaryPhone; + var emailId = data.emailId; + var Comments =data.Comments; + if((firstname == undefined)||(primaryPhone =="")||(emailId == undefined)||(Comments == undefined)) + { + + swal("Please Enter all the Fields"); + } + else{ + // swal("submit"); + var reg = { + method: 'POST', + url: apiPoint.url + 'mailto/', + headers: { 'Content-Type': 'application/json' }, + data: {firstname:firstname,primaryPhone:primaryPhone,emailId:emailId,Comments:Comments} + // console.los(data); + }; + } + + $http(reg).then(function (response) { + + console.log(response.data) + + + if(response.data.updateStatus == true) + { + swal("Success",response.data.message, "success"); + } + // swal(" Success", message, "success"); + // form.$setPristine(true); + $scope.myModel = { + firstname: "", + primaryPhone: "", + emailId: "", + Comments:"" + }; + + swal("Success",response.data.message, "success"); + + }) + +} + }]); diff --git a/Apollo/assets/views/login_login.html b/Apollo/assets/views/login_login.html index a313ec0c..dd8f69fc 100755 --- a/Apollo/assets/views/login_login.html +++ b/Apollo/assets/views/login_login.html @@ -7,8 +7,13 @@ body { font: 400 15px Lato, sans-serif; line-height: 1.8; - color: #818181; + color: #f7f7f8 } + h5{ + color:#aeacb4; + } + } + h2 { font-size: 24px; text-transform: uppercase; @@ -19,7 +24,7 @@ h4 { font-size: 19px; line-height: 1.375em; - color: #303030; + color: #959595; font-weight: 400; margin-bottom: 30px; } @@ -303,9 +308,368 @@ color: #fff; } + +.body .regular_course ul, .body .ssk ul, .body .IIE ul, .body .rvu ul, .body .ksou ul, .body .voice-lesson ul { + background-color:#f7f7f8; + border:1px solid #dfe1e4; + border-radius:10px; + float:left; + list-style:none; + margin:0 19px 0 0; + padding:0; + width:25%; +} +.body .regular_course ul li.selected, .body .regular_course ul li:hover, .body .ssk ul li.selected, .body .ssk ul li:hover, .body .IIE ul li.selected, .body .IIE ul li:hover, .body .rvu ul li.selected, .body .rvu ul li:hover, .body .ksou ul li.selected, .body .ksou ul li:hover, .body .voice-lesson ul li.selected, .body .voice-lesson ul li:hover { + background-color:#fff; + border-radius:0; +} +.body .regular_course ul li.last:hover, .body .ssk ul li.last:hover, .body .IIE ul li.last:hover, .body .rvu ul li.last:hover, .body .ksou ul li.last:hover, .body .voice-lesson ul li.selected.last, .body .voice-lesson ul li.last:hover { + border-radius:0 0 10px 10px; +} +.body .regular_course ul li, .body .ssk ul li, .body .IIE ul li, .body .rvu ul li, .body .ksou ul li, .body .voice-lesson ul li { + border-top:1px solid #dfe1e4; +} +.body .regular_course ul li a, .body .ssk ul li a, .body .IIE ul li a, .body .rvu ul li a, .body .ksou ul li a, .body .voice-lesson ul li a { + color:#6a7578; + display:block; + font-size:14px; + letter-spacing:.025em; + line-height:24px; + padding:14px 0 10px 19px; + text-decoration:none; + text-transform:uppercase; +} +.body .regular_course .content, .body .ssk .content, .body .IIE .content, .body .rvu .content, .body .ksou .content, .body .voice-lesson .content { + background-color:#FFF; + border:1px solid #DFE1E4; + border-radius:10px 10px 10px 10px; + float:left; + padding:17px 0 0; + width:73%; +} +.body .regular_course .content div:first-child, .body .rvu .content div:first-child, .body .voice-lesson .content div:first-child { + border-bottom:1px solid #dfe1e4; + overflow:hidden; + padding:0 0 18px; + width:788px; +} +.body .regular_course .content div:first-child h2, .body .ssk .content div:first-child h2, .body .rvu .content div:first-child h2, .body .ksou .content div:first-child h2 { + color:#EC7500; + font-family:Georgia, "Times New Roman", Times, serif; + font-size:30px; + font-weight:400; + letter-spacing:.025em; + line-height:48px; + margin:0 18px 0 19px; + width:auto; +} +.body .regular_course .content div:first-child h2 a, .body .ssk .content div:first-child h2 a, .body .IIE .content div:first-child h2 a, .body .rvu .content div:first-child h2 a, .body .ksou .content div:first-child h2 a, .body .voice-lesson .content div:first-child h2 a { + color:#EC7500; + display:inline; + float:none; + margin:0; + padding:0; +} +.body .regular_course .content div:first-child div, .body .rvu .content div:first-child div { + float:left; + margin:0 19px; + padding:5px; + width:100%; +} +.body .regular_course .content div:first-child div p, .body .rvu .content div:first-child div p, .body .ksou .content div:first-child div p { + color:#6B7073; + font-size:14px; + letter-spacing:.05em; + line-height:24px; + margin:19px 0 24px; + text-align:justify; +} +.body .regular_course .content div:first-child div p a, .body .ssk .content div:first-child div p a, .body .IIE .content div:first-child div p a, .body .rvu .content div:first-child div p a, .body .ksou .content div:first-child div p a, .body .voice-lesson .content div:first-child div p a { + color:#6B7073; + display:inline; + float:none; + margin:0; +} +.body .regular_course .content div:first-child div p a:hover, .body .ssk .content div:first-child div p a:hover, .body .IIE .content div:first-child div p a:hover, .body .rvu .content div:first-child div p a:hover, .body .ksou .content div:first-child div p a:hover, .body .voice-lesson .content div:first-child div p a:hover { + color:#EC7500; +} +.body .regular_course .content div:first-child a, .body .ssk .content div:first-child a, .body .IIE .content div:first-child a, .body .rvu .content div:first-child a, .body .ksou .content div:first-child a, .body .voice-lesson .content div:first-child a { + display:block; + float:left; + margin:26px 30px 0 0; +} +.body .regular_course .content div.section, .body .ssk .content div.section, .body .IIE .content div.section, .body .rvu .content div.section, .body .ksou .content div.section, .body .voice-lesson .content div.section { + border-right:1px solid #DFE1E4; + float:left; + padding:15px 0 54px 19px; + width:500px; +} +.body .regular_course .content div.section div:first-child, .body .regular_course .content div ul li:first-child, .body .ssk .content div.section div:first-child, .body .ssk .content div ul li:first-child, .body .IIE .content div.section div:first-child, .body .IIE .content div ul li:first-child, .body .rvu .content div.section div:first-child, .body .rvu .content div ul li:first-child, .body .ksou .content div.section div:first-child, .body .ksou .content div ul li:first-child, .body .voice-lesson .content div.section div:first-child, .body .voice-lesson .content div ul li:first-child { + margin:0; +} +.body .regular_course .content div.section div, .body .ssk .content div.section div, .body .IIE .content div.section div, .body .rvu .content div.section div, .body .ksou .content div.section div, .body .voice-lesson .content div.section div { + border:0; + margin:24px 0 0; + padding:0 30px 0 0; + width:auto; +} +.body .regular_course .content div.section div h4, .body .ssk .content div.section div h4, .body .IIE .content div.section div h4, .body .rvu .content div.section div h4, .body .ksou .content div.section div h4, .body .voice-lesson .content div.section div h4 { + color:#6B7073; + font-size:14px; + font-weight:700; + letter-spacing:.05em; + line-height:24px; + margin:0; + text-align:justify; + text-transform:uppercase; +} +.body .regular_course .content div.section div span, .body .regular_course .content div.section div p, .body .ssk .content div.section div span, .body .ssk .content div.section div p, .body .IIE .content div.section div span, .body .IIE .content div.section div p, .body .rvu .content div.section div span, .body .rvu .content div.section div p, .body .ksou .content div.section div span, .body .ksou .content div.section div p, .body .voice-lesson .content div.section div span, .body .voice-lesson .content div.section div p, .body .blog-single div:first-child div p { + color:#6B7073; + font-size:14px; + letter-spacing:.05em; + line-height:24px; + margin:0; + text-align:justify; +} +.body .regular_course .content div.section div p a, .body .ssk .content div.section div p a, .body .IIE .content div.section div p a, .body .rvu .content div.section div p a, .body .ksou .content div.section div p a, .body .voice-lesson .content div.section div p a, .body .blog-single div:first-child div p a { + margin:0; + float:none; + display:inline; + color:#6B7073; +} +.body .regular_course .content div.section div p a:hover, .body .ssk .content div.section div p a:hover, .body .IIE .content div.section div p a:hover, .body .rvu .content div.section div p a:hover, .body .ksou .content div.section div p a:hover, .body .voice-lesson .content div.section div p a:hover, .body .blog-single div:first-child div p a:hover { + color: #FF8B00; +} +.body .regular_course .content div, .body .ssk .content div, .body .IIE .content div, .body .rvu .content div, .body .ksou .content div, .body .voice-lesson .content div { + float:left; + padding:15px 27px 54px 19px; + width:221px; +} +.body .regular_course .content div h4, .body .ssk .content div h4, .body .IIE .content div h4, .body .rvu .content div h4, .body .ksou .content div h4, .body .voice-lesson .content div h4 { + color:#6B7073; + font-size:14px; + font-weight:700; + /*letter-spacing:.05em;*/ + line-height:24px; + margin:0; + text-align:justify; + text-transform:uppercase; +} +.body .regular_course .content div ul, .body .ssk .content div ul, .body .IIE .content div ul, .body .rvu .content div ul, .body .ksou .content div ul, .body .voice-lesson .content div ul { + background:none!important; + border:0; + margin:0; + width:auto; +} +.body .regular_course .content div ul li, .body .ssk .content div ul li, .body .IIE .content div ul li, .body .rvu .content div ul li, .body .ksou .content div ul li, .body .voice-lesson .content div ul li { + border:0; + margin:24px 0 0; +} +.body .regular_course .content div ul li span:first-child, .body .ssk .content div ul li span:first-child, .body .IIE .content div ul li span:first-child, .body .rvu .content div ul li span:first-child, .body .ksou .content div ul li span:first-child, .body .voice-lesson .content div ul li span:first-child { + text-align:left; +} +.body .regular_course .content div ul li span, .body .ssk .content div ul li span, .body .IIE .content div ul li span, .body .rvu .content div ul li span, .body .ksou .content div ul li span, .body .voice-lesson .content div ul li span { + color:#6B7073; + display:block; + font-size:14px; + letter-spacing:.05em; + line-height:24px; + margin:0; + text-align:right; +} +.body .regular_course .content div ul li span span:first-child, .body .ssk .content div ul li span span:first-child, .body .IIE .content div ul li span span:first-child, .body .rvu .content div ul li span span:first-child, .body .ksou .content div ul li span span:first-child, .body .voice-lesson .content div ul li span span:first-child { + display:inline-block; + width:70px; +} +.body .ssk .content div:first-child, .body .IIE .content div:first-child { + border-bottom:1px solid #dfe1e4; + overflow:hidden; + padding:0 0 30px; + width:788px; +} +.body .ssk .content div:first-child div h3, .body .IIE .content div:first-child div h3, .body .voice-lesson .content div:first-child div h3 { + color:#444; + font-size:14px; + font-weight:400; + letter-spacing:.05em; + line-height:24px; + margin:0; + text-align:justify; +} +.body .ssk .content div:first-child div h3 a, .body .IIE .content div:first-child div h3 a, .body .voice-lesson .content div:first-child div h3 a { + margin:0; + display:inline; + float:none; + color:#444; +} +.body .ssk .content div:first-child div h3 a:hover, .body .IIE .content div:first-child div h3 a:hover, .body .voice-lesson .content div:first-child div h3 a:hover { + color: #FF8B00; +} +.body .ssk .content div:first-child div p, .body .IIE .content div:first-child div p, .body .voice-lesson .content div:first-child div p { + color:#6B7073; + font-size:14px; + letter-spacing:.05em; + line-height:24px; + margin:0 0 24px; + text-align:justify; +} +.body .IIE .content div:first-child h2, .body .voice-lesson .content div:first-child h2 { + color:#EC7500; + font-family:Georgia, "Times New Roman", Times, serif; + font-size:30px; + font-weight:400; + letter-spacing:.025em; + line-height:48px; + margin:0 0 19px; + width:auto; +} +.body .IIE .content div:first-child div:first-child, .body .voice-lesson .content div:first-child div:first-child { + border:0; + float:left; + margin:0 19px; + padding:5px 0 0; + width:100%; + border-bottom: 1px solid #dfe1e4; +} +.body .IIE .content div:first-child div, .body .voice-lesson .content div:first-child div { + border: 0; + float: left; + margin: 0px 19px; + overflow: hidden; + padding: 5px 0; + width: 100%; - +} +.body .IIE .content div:first-child div a, .body .voice-lesson .content div:first-child div a { + float:none; + margin:0 0 25px; +} +.body .blog .section:first-child div span, .body .blog .section:first-child div div span, .body .blog-single div:first-child div span { + border-bottom:2px solid #FF8B00; + color:#6B7073; + display:inline; + font-size:14px; + left:0; + letter-spacing:.05em; + line-height:24px; + padding:0 0 1px 17px; + position:absolute; + top:13px; + width:70px; +} +.body .blog .section:first-child div img, .body .blog .section div:first-child div ul li img { + border:1px solid #B3B7BB; + float:left; + margin:0 20px 0 0; +} +.body .blog .section:first-child div p, .body .blog .section:first-child div div p { + color:#6B7073; + font-size:14px; + letter-spacing:.05em; + line-height:24px; + margin:0; + text-align:justify; +} +.body .blog .section:first-child div div > a, .body .blog .section:first-child div > a { + color:#6b7073; + text-decoration:none; + font-size:14px; + line-height:24px; + letter-spacing:0.05em; +} +.body .blog .section:first-child div div > a:hover, .body .blog .section:first-child div > a:hover { + color:#ff8b00; +} +.body .blog .section:first-child div p a, .body .blog .section:first-child div div p a { + color:#6B7073; +} +.body .blog .section:first-child div p a:hover, .body .blog .section:first-child div div p a:hover { + color: #FF8B00; +} +.body .blog .section:first-child div div h3 a:hover, .body .blog .section:first-child div div p a:hover, .body .blog .section div div ul li p a.more:hover, .body .blog-single div:first-child div h3 a:hover, .body .blog-single div:first-child div p a:hover, .body .blog-single div div:first-child ul li h3 a:hover { + color:#FF8B00; +} +.body .blog .section:first-child div div p a, .body .blog-single div:first-child div p a { + color:#6B7073; +} +.body .blog .section div:first-child h2, .body .blog .section div h2, .body .blog-single div h2 { + color:#FF8B00; + font-size:16px; + font-weight:400; + letter-spacing:.025em; + line-height:24px; + margin:0 0 9px; + text-transform:uppercase; +} +.body .blog .section div ul li, .body .blog-single div ul li { + border-top:1px solid #E1E3E6; + padding:13px 24px; +} +.body .blog .section div ul li a, .body .blog-single div ul li a { + color:#6B7073; + display:inline; + font-size:14px; + letter-spacing:.05em; + line-height:24px; + margin:0; + text-align:left; + text-decoration:none; +} +.body .blog .section div ul li a:hover, .body .blog-single div ul li a:hover { + text-decoration:underline; +} +.body .blog .section div ul li p a, .body .blog-single div ul li p a { + color:#6B7073; +} +.body .blog .section div ul li p a:hover, .body .blog-single div ul li p a:hover { + color: #FF8B00; +} +.body .contact div form div:first-child label, .body .contact div form div label { + color:#6B7073; + display:block; + font-size:14px; + height:36px; + letter-spacing:.075em; + line-height:37px; +} +.body .home .content .featured p a:hover, .body .about div div p a:hover, .body .about div.sidebar ul:first-child li:hover span a, .body .about div.sidebar div ul li h2 a:hover, .body .regular_course ul li.selected a, .body .regular_course ul li a:hover, .body .regular_course ul li:hover a, .body .ssk ul li.selected a, .body .ssk ul li a:hover, .body .ssk ul li:hover a, .body .IIE ul li.selected a, .body .IIE ul li a:hover, .body .IIE ul li:hover a, .body .rvu ul li.selected a, .body .rvu ul li a:hover, .body .rvu ul li:hover a, .body .ksou ul li.selected a, .body .ksou ul li a:hover, .body .ksou ul li:hover a, .body .voice-lesson ul li.selected a, .body .voice-lesson ul li a:hover, .body .voice-lesson ul li:hover a, .body .contact div:first-child div:first-child p a:hover { + color: #light blue; +} + + #about{ + border-color: #076ae4; + box-shadow: 0 0 28px #69a9e0 inset; + } + #ku1 + {border-color: #076ae4; + box-shadow: 0 0 28px #69a9e0 inset;} + #ksou1 + {border-color: #076ae4; + box-shadow: 0 0 28px #69a9e0 inset;} + #ku + {border-color: #076ae4; + box-shadow: 0 0 28px #69a9e0 inset;} + #ksou + {border-color: #076ae4; + box-shadow: 0 0 28px #69a9e0 inset;} + #i + {border-color: #076ae4; + box-shadow: 0 0 28px #69a9e0 inset;} + #newstud + {border-color: #076ae4; + box-shadow: 0 0 28px #69a9e0 inset; + color: #f7f7f8;} + #DE + {border-color: #076ae4; + box-shadow: 0 0 28px #69a9e0 inset;} + .form-control { + color: block; + } + #reg{border-color: #076ae4; + box-shadow: 0 0 28px #69a9e0 inset;} + + +
- +
+
+

About Us


- Education is the only way to abolish poverty in our nation. - There are several educationists that have fought a good fight - against illiteracy. Although the battle is still on, there are miles to go. - Gone are the days when education was viewed as a service to the mankind. - Today the Distance Education in India - is one of the largest industries with a very high turnover. - The changes in foreign policies of the country - have also attracted several foreign investors to invest in India - hoping for great returns. -

-

- Apollo is one among the few that consider higher education at low cost through - Distance Education Wing still as a service rendered to mankind. - The ISO 9001:2008 certified institution strives to provide quality higher - education to the Indian students via distance learning mode. With its head - quarters in Chennai, it is best institute for Distance Education in India, - the institution offers various B Tech Distance Education, M Tech Distance Education, - Diploma Distance Education and MBA Correspondence and MCA Correspondence courses - accredited by various universities in india with the view of empowering students - with the best of knowledge and enhance their employability.

- -
-
+ + + Education is the only way to abolish poverty in our nation. There are several educationists that have fought a good fight against illiteracy. Although the battle is still on, there are miles to go. Gone are the days when education was viewed as a service to the mankind. Today the Distance Education in India is one of the largest industries with a very high turnover. The changes in foreign policies of the country have also attracted several foreign investors to invest in India hoping for great returns.

+Apollo College is one among the few that consider higher education at low cost through Distance Education Wing still as a service rendered to mankind. The ISO 9001:2008 certified institution strives to provide quality higher education to the Indian students via distance learning mode. With its head quarters in Chennai, it is best institute for distance education in india, the institution offers various B Tech Distance Education, M Tech Distance Education, Diploma Distance Education and MBA Correspondence and MCA Correspondence courses accredited by various universities in india with the view of empowering students with the best of knowledge and enhance their employability.
+
Apollo College offered the disciplines B Tech and M Tech distance education courses is wide and students can choose the one which best suits for them. Top engineering courses like Electronics and Communication Engineering, Electronics and Electrical Engineering, Computer Science Engineering, Information Technology, Mechanical Engineering, Civil Engineering and much more are offered at top distance education universities in India. The range of courses is even wider in case of M Tech Distance education. Apart from regular courses, research course is also offered under part time education. + +Apollo College was established in the year 1999, in order to provide high quality education under the distance education / distance learning / correspondence method to students. The college focuses on students that wish to pursue higher education but are unable to attend the regular colleges due to various reasons. One other lot that benefits from the institution is the employed ones that look forward to qualify themselves for promotions and gain additional knowledge over their domain.
+
+
+
+ +
+
+              + +

+List of universities that have authorized Apollo college to function as the center of learning for their distance education courses include the following:

+

+ +
    + +
  • JRN Rajasthan Vidyapeeth University, Rajasthan
  • + +
  • Karnataka State Open University, Karnataka
  • + +
  • Sainath University, Jharkhand
  • + +
  • Dr.C.V.Raman University, Chhattisgarh
  • + +
  • Singhania University, Rajasthan
  • + +
  • EIILM University, Sikkim
  • + +
  • The Global Open University, Nagaland
  • + +
  • St. Peters University, Tamil nadu
  • + +
  • Periyar University, Tamil nadu
  • + +
  • Sikkim Manipal University, Sikkim
  • + +
+

+
+
 
+
+             +

Various distance education diploma and degree courses offered by the institution through the above universities are as follows:

+

Apollo College offers B Tech Engineering in a variety of subjects through distance education mode and B Tech distance education courses offered the following streams by the institution include:

+

+
    +
  • Mechanical Engineering
  • +
  • Chemical Engineering
  • +
  • Civil Engineering
  • +
  • Electrical Engineering
  • +
  • Computer Science Engineering
  • +
  • Electronics and Telecommunications Engineering
  • +

+
+
+
+ +
+              +

Apollo College offers Diploma Engineering in a variety of subjects through distance education mode and Diploma distance education courses offered the following streams by the institution include:

+

+
    +
  • Automobile Engineering
  • +
  • Mechanical Engineering
  • +
  • Chemical Engineering
  • +
  • Civil Engineering
  • +
  • Electrical Engineering
  • +
  • Computer Science Engineering
  • +
  • Electronics and Telecommunications Engineering
  • +
+

+
+
 
+
+              +

MBA Correspondence, MCA Distance Education and other Management / IT Courses via distance mode include:

+

+
    +
  • MBA
  • +
  • Executive MBA
  • +
  • MCA
  • +
  • MSc IT
  • +
  • BBA
  • +
  • BCA
  • +
  • BSc IT
  • +
  • Integrated MBA
  • +
  • Integrated MCA
  • +

+
+
+
+
+
+              +

M Tech distance education courses offered in the following streams as follows:

+

+
    +
  • Mechanical Engineering
  • +
  • Civil Engineering
  • +
  • Electrical Engineering
  • +
  • Computer Science Engineering
  • +
  • Electronics and Telecommunications Engineering
  • +
+

+ +

Other professional courses include:

+

+
    +
  • MSc Microbiology
  • +
  • MSc Bio-Chemistry
  • +
  • MSc Bio-Informatics
  • +
  • MSc Computer Science
  • +
  • BA / MA
  • +
  • B.Com / M.Com
  • +
  • BSW / MSW
  • +
+

+ + +
+ +
 
+ +
+              +

M Phil Distance Education and PhD Distance Learning research programs offered through Apollo College include:

+

+
    +
  • Mechanical
  • +
  • Civil
  • +
  • Electronics and communication
  • +
  • Computer Science
  • +
  • Electrical
  • +
  • Information Technology
  • +
  • Management (All streams)
  • +
  • Education
  • +
  • Physical Education
  • +
  • Sociology
  • +
  • Commerce
  • +
  • Psychology
  • +
  • Physics
  • +
  • Chemistry
  • +
  • Mathematics
  • +
  • English
  • +
  • History
  • +
  • Economics
  • +
  • Public Adminstration
  • +
  • Political Science
  • +
+

+
+ + +
+
- -
-

What we offer

+ +
+
+

COURSE


- -
-
- -

Technology

-

Lorem ipsum dolor sit amet..

-
-
-
-
- -

Support

-

Lorem ipsum dolor sit amet..

-
-
-
-

-
-
-
- -

Infro

-

Lorem ipsum dolor sit amet..

-
-
-
-
- -

knowledge

-

Lorem ipsum dolor sit amet..

-
-
-
-
- -

Growth

-

Lorem ipsum dolor sit amet..

-
-
-
+ -
-
-

What we have created

+ +
+
+
+
+

+ +
-
+
Paris

Distance Eduction

Distance education in India offers you the quality education which helps you to complete your degree without taking regular classes.

-
-
- New York -

Lean and Work

-

Distance education is a boon for millions of people, giving them a convenient way to pursue their education while working.

-
+
+ +
+
+ + + First Name is required + Invalid First Name +
+
+
+ + + Mobile Number is required. + Enter a Valid Phone Number +
+ +
+ + + Email is required. + Please, enter a valid email address. +
+ + +
+ + + + +
+ +
+
+
+
+ + + + + + + +
+
+ + +
-
-
- San Francisco -

Success of us

-

Distance learning institutes in India have witnessed a remarkable rise in student enrolment crossing the 10 million people.

-
-
-

- - -
+ -
+
-

Contact us and we'll get back to you within 24 hours.

-
-
-

60, First Floor, \r Trunk Road,
- Poonamallee, Chennai - 600056.

-

9962012985

-

Vipnagarajan@gmail.com

-
-
-
-
- - -
-
- -
-
-
-
-
- -
-
-
-
+
+ \ No newline at end of file