mirror of
https://github.com/usmannasir/cyberpanel.git
synced 2025-11-15 09:46:11 +01:00
Initial Commit
This commit is contained in:
104
static/loginSystem/login-systen.js
Normal file
104
static/loginSystem/login-systen.js
Normal file
@@ -0,0 +1,104 @@
|
||||
/**
|
||||
* Created by usman on 7/24/17.
|
||||
*/
|
||||
|
||||
/* Utilities */
|
||||
|
||||
|
||||
function getCookie(name) {
|
||||
var cookieValue = null;
|
||||
if (document.cookie && document.cookie !== '') {
|
||||
var cookies = document.cookie.split(';');
|
||||
for (var i = 0; i < cookies.length; i++) {
|
||||
var cookie = jQuery.trim(cookies[i]);
|
||||
// Does this cookie string begin with the name we want?
|
||||
if (cookie.substring(0, name.length + 1) === (name + '=')) {
|
||||
cookieValue = decodeURIComponent(cookie.substring(name.length + 1));
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
return cookieValue;
|
||||
}
|
||||
|
||||
/* Utilities ends here */
|
||||
|
||||
|
||||
/* Java script code to Check Login status */
|
||||
$("#verifyingLogin").hide();
|
||||
$("#loginFailed").hide();
|
||||
|
||||
|
||||
var application = angular.module('loginSystem', []);
|
||||
|
||||
application.config(['$interpolateProvider',
|
||||
|
||||
function($interpolateProvider) {
|
||||
$interpolateProvider.startSymbol('{$');
|
||||
$interpolateProvider.endSymbol('$}');
|
||||
}
|
||||
]);
|
||||
|
||||
|
||||
|
||||
|
||||
application.controller('loginSystem', function($scope,$http,$window) {
|
||||
|
||||
|
||||
$scope.verifyLoginCredentials = function() {
|
||||
|
||||
$("#verifyingLogin").show();
|
||||
|
||||
|
||||
var username = $scope.username;
|
||||
var password= $scope.password;
|
||||
var languageSelection= $scope.languageSelection;
|
||||
|
||||
|
||||
url = "/verifyLogin";
|
||||
|
||||
var data = {
|
||||
username: username,
|
||||
password: password,
|
||||
languageSelection:languageSelection,
|
||||
};
|
||||
|
||||
var config = {
|
||||
headers : {
|
||||
'X-CSRFToken': getCookie('csrftoken')
|
||||
}
|
||||
};
|
||||
|
||||
$http.post(url, data,config).then(ListInitialData, cantLoadInitialData);
|
||||
|
||||
|
||||
function ListInitialData(response) {
|
||||
console.log(response.data)
|
||||
|
||||
if (response.data.loginStatus == 0)
|
||||
{
|
||||
$scope.errorMessage = response.data.error_message;
|
||||
$("#loginFailed").fadeIn();
|
||||
}
|
||||
else{
|
||||
$("#loginFailed").hide();
|
||||
$window.location.href = '/base';
|
||||
}
|
||||
|
||||
|
||||
|
||||
$("#verifyingLogin").hide();
|
||||
}
|
||||
function cantLoadInitialData(response) {
|
||||
console.log("not good");
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
};
|
||||
});
|
||||
|
||||
|
||||
/* Java script code to to Check Login status ends here */
|
||||
|
||||
Reference in New Issue
Block a user