suseendhiran
This commit is contained in:
parent
4795fdea72
commit
ae16527a95
@ -1,30 +1,5 @@
|
|||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
|
||||||
<!-- Meta, title, CSS, favicons, etc. -->
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
||||||
|
|
||||||
|
|
||||||
<!-- Bootstrap -->
|
|
||||||
<link href="../vendors/bootstrap/dist/css/bootstrap.min.css" rel="stylesheet">
|
|
||||||
<!-- Font Awesome -->
|
|
||||||
<link href="../vendors/font-awesome/css/font-awesome.min.css" rel="stylesheet">
|
|
||||||
<!-- NProgress -->
|
|
||||||
<link href="../vendors/nprogress/nprogress.css" rel="stylesheet">
|
|
||||||
<!-- bootstrap-daterangepicker -->
|
|
||||||
<link href="../vendors/bootstrap-daterangepicker/daterangepicker.css" rel="stylesheet">
|
|
||||||
|
|
||||||
<!-- Custom Theme Style -->
|
|
||||||
<link href="../build/css/custom.min.css" rel="stylesheet">
|
|
||||||
</head>
|
|
||||||
|
|
||||||
<body class="nav-md">
|
|
||||||
<div class="container body">
|
|
||||||
<div class="main_container">
|
|
||||||
|
|
||||||
|
|
||||||
<!-- page content -->
|
<!-- page content -->
|
||||||
<div class="" role="main">
|
<div class="" role="main">
|
||||||
@ -113,30 +88,3 @@
|
|||||||
</div>
|
</div>
|
||||||
<!-- /page content -->
|
<!-- /page content -->
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<!-- jQuery -->
|
|
||||||
<script src="../vendors/jquery/dist/jquery.min.js"></script>
|
|
||||||
<!-- Bootstrap -->
|
|
||||||
<script src="../vendors/bootstrap/dist/js/bootstrap.bundle.min.js"></script>
|
|
||||||
<!-- FastClick -->
|
|
||||||
<script src="../vendors/fastclick/lib/fastclick.js"></script>
|
|
||||||
<!-- NProgress -->
|
|
||||||
<script src="../vendors/nprogress/nprogress.js"></script>
|
|
||||||
<!-- morris.js -->
|
|
||||||
<script src="../vendors/raphael/raphael.min.js"></script>
|
|
||||||
<script src="../vendors/morris.js/morris.min.js"></script>
|
|
||||||
<!-- bootstrap-progressbar -->
|
|
||||||
<script src="../vendors/bootstrap-progressbar/bootstrap-progressbar.min.js"></script>
|
|
||||||
<!-- bootstrap-daterangepicker -->
|
|
||||||
<script src="../vendors/moment/min/moment.min.js"></script>
|
|
||||||
<script src="../vendors/bootstrap-daterangepicker/daterangepicker.js"></script>
|
|
||||||
|
|
||||||
<!-- Custom Theme Scripts -->
|
|
||||||
<script src="../build/js/custom.min.js"></script>
|
|
||||||
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
@ -76,54 +76,6 @@
|
|||||||
</div>
|
</div>
|
||||||
<!-- --------------------------- -->
|
<!-- --------------------------- -->
|
||||||
|
|
||||||
<script>
|
|
||||||
$(document).on('click','#submit',function(){
|
|
||||||
var data = $("#change-pass").serialize();
|
|
||||||
$.ajax({
|
|
||||||
type: "post",
|
|
||||||
url: "<?php echo base_url();?>user/check_password",
|
|
||||||
data: data,
|
|
||||||
json: true,
|
|
||||||
success: function(response) {
|
|
||||||
if (response === "success") {
|
|
||||||
// location.href = "<?php echo base_url();?>auth";
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
$('#message1').html('Worng password').css('color', 'red');
|
|
||||||
alert(response);
|
|
||||||
}
|
|
||||||
},
|
|
||||||
error: function(jqXHR, textStatus, err) { alert('text status '+textStatus+', err '+err) }
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
||||||
|
|
||||||
// match the password and confirm password equal or not
|
|
||||||
$('#password, #confirm_password').on('keyup', function () {
|
|
||||||
$(':input[type="submit"]').prop('disabled', true);
|
|
||||||
if ($('#password').val() == $('#confirm_password').val() && $('#confirm_password').val().length > 0 ) {
|
|
||||||
$('#message').html('Matching').css('color', 'green');
|
|
||||||
$('button[type="submit"]').attr("disabled", false);
|
|
||||||
}
|
|
||||||
else if($('#password').val().length == 0 || $('#confirm_password').val().length == 0){
|
|
||||||
$('#message').html('');
|
|
||||||
}
|
|
||||||
else
|
|
||||||
$('#message').html('Not Matching').css('color', 'red');
|
|
||||||
});
|
|
||||||
|
|
||||||
// password eye icon
|
|
||||||
$(".toggle-password").click(function() {
|
|
||||||
$(this).toggleClass("fa-eye fa-eye-slash");
|
|
||||||
var input = $($(this).attr("toggle"));
|
|
||||||
if (input.attr("type") == "password") {
|
|
||||||
input.attr("type", "text");
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
input.attr("type", "password");
|
|
||||||
}
|
|
||||||
});
|
|
||||||
</script>
|
|
||||||
|
|
||||||
|
|
||||||
<div class="ln_solid"></div>
|
<div class="ln_solid"></div>
|
||||||
|
|||||||
@ -1,30 +1,5 @@
|
|||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
|
||||||
<!-- Meta, title, CSS, favicons, etc. -->
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
||||||
|
|
||||||
|
|
||||||
<!-- Bootstrap -->
|
|
||||||
<link href="../vendors/bootstrap/dist/css/bootstrap.min.css" rel="stylesheet">
|
|
||||||
<!-- Font Awesome -->
|
|
||||||
<link href="../vendors/font-awesome/css/font-awesome.min.css" rel="stylesheet">
|
|
||||||
<!-- NProgress -->
|
|
||||||
<link href="../vendors/nprogress/nprogress.css" rel="stylesheet">
|
|
||||||
<!-- bootstrap-daterangepicker -->
|
|
||||||
<link href="../vendors/bootstrap-daterangepicker/daterangepicker.css" rel="stylesheet">
|
|
||||||
|
|
||||||
<!-- Custom Theme Style -->
|
|
||||||
<link href="../build/css/custom.min.css" rel="stylesheet">
|
|
||||||
</head>
|
|
||||||
|
|
||||||
<body class="nav-md">
|
|
||||||
<div class="container body">
|
|
||||||
<div class="main_container">
|
|
||||||
|
|
||||||
|
|
||||||
<!-- page content -->
|
<!-- page content -->
|
||||||
<div class="" role="main">
|
<div class="" role="main">
|
||||||
@ -112,31 +87,3 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<!-- /page content -->
|
<!-- /page content -->
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<!-- jQuery -->
|
|
||||||
<script src="../vendors/jquery/dist/jquery.min.js"></script>
|
|
||||||
<!-- Bootstrap -->
|
|
||||||
<script src="../vendors/bootstrap/dist/js/bootstrap.bundle.min.js"></script>
|
|
||||||
<!-- FastClick -->
|
|
||||||
<script src="../vendors/fastclick/lib/fastclick.js"></script>
|
|
||||||
<!-- NProgress -->
|
|
||||||
<script src="../vendors/nprogress/nprogress.js"></script>
|
|
||||||
<!-- morris.js -->
|
|
||||||
<script src="../vendors/raphael/raphael.min.js"></script>
|
|
||||||
<script src="../vendors/morris.js/morris.min.js"></script>
|
|
||||||
<!-- bootstrap-progressbar -->
|
|
||||||
<script src="../vendors/bootstrap-progressbar/bootstrap-progressbar.min.js"></script>
|
|
||||||
<!-- bootstrap-daterangepicker -->
|
|
||||||
<script src="../vendors/moment/min/moment.min.js"></script>
|
|
||||||
<script src="../vendors/bootstrap-daterangepicker/daterangepicker.js"></script>
|
|
||||||
|
|
||||||
<!-- Custom Theme Scripts -->
|
|
||||||
<script src="../build/js/custom.min.js"></script>
|
|
||||||
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
@ -148,3 +148,94 @@ $( document ).ready(function() {
|
|||||||
|
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
||||||
|
// ------------------------------------------------------
|
||||||
|
|
||||||
|
$(document).on('click','#submit',function(){
|
||||||
|
var data = $("#change-pass").serialize();
|
||||||
|
$.ajax({
|
||||||
|
type: "post",
|
||||||
|
url: "<?php echo base_url();?>user/check_password",
|
||||||
|
data: data,
|
||||||
|
json: true,
|
||||||
|
success: function(response) {
|
||||||
|
if (response === "success") {
|
||||||
|
// location.href = "<?php echo base_url();?>auth";
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
$('#message1').html('Worng password').css('color', 'red');
|
||||||
|
alert(response);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
error: function(jqXHR, textStatus, err) { alert('text status '+textStatus+', err '+err) }
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
|
||||||
|
// match the password and confirm password equal or not
|
||||||
|
$('#password, #confirm_password').on('keyup', function () {
|
||||||
|
$(':input[type="submit"]').prop('disabled', true);
|
||||||
|
if ($('#password').val() == $('#confirm_password').val() && $('#confirm_password').val().length > 0 ) {
|
||||||
|
$('#message').html('Matching').css('color', 'green');
|
||||||
|
$('button[type="submit"]').attr("disabled", false);
|
||||||
|
}
|
||||||
|
else if($('#password').val().length == 0 || $('#confirm_password').val().length == 0){
|
||||||
|
$('#message').html('');
|
||||||
|
}
|
||||||
|
else
|
||||||
|
$('#message').html('Not Matching').css('color', 'red');
|
||||||
|
});
|
||||||
|
|
||||||
|
// password eye icon
|
||||||
|
$(".toggle-password").click(function() {
|
||||||
|
$(this).toggleClass("fa-eye fa-eye-slash");
|
||||||
|
var input = $($(this).attr("toggle"));
|
||||||
|
if (input.attr("type") == "password") {
|
||||||
|
input.attr("type", "text");
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
input.attr("type", "password");
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
// match the password and confirm password equal or not
|
||||||
|
$('#password, #confirm_password').on('keyup', function () {
|
||||||
|
$(':input[type="submit"]').prop('disabled', true);
|
||||||
|
if ($('#password').val() == $('#confirm_password').val() && $('#confirm_password').val().length > 0 ) {
|
||||||
|
$('#message').html('Matching').css('color', 'green');
|
||||||
|
$('button[type="submit"]').attr("disabled", false);
|
||||||
|
}
|
||||||
|
else if($('#password').val().length == 0 || $('#confirm_password').val().length == 0){
|
||||||
|
$('#message').html('');
|
||||||
|
}
|
||||||
|
else
|
||||||
|
$('#message').html('Not Matching').css('color', 'red');
|
||||||
|
});
|
||||||
|
|
||||||
|
// password eye icon
|
||||||
|
$(".toggle-password").click(function() {
|
||||||
|
$(this).toggleClass("fa-eye fa-eye-slash");
|
||||||
|
var input = $($(this).attr("toggle"));
|
||||||
|
if (input.attr("type") == "password") {
|
||||||
|
input.attr("type", "text");
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
input.attr("type", "password");
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
// sadmin create admin onchange function select permit as all default
|
||||||
|
$('#role').on('change', function() {
|
||||||
|
if(this.value == "admin")
|
||||||
|
{
|
||||||
|
$('#action_permit').html('<option value="all">All</option>');
|
||||||
|
$('#action_permit').attr("style", "pointer-events: none;");
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
$('#action_permit').attr("style", "pointer-events: default;");
|
||||||
|
$('#action_permit').html(`<option value="">Select permit</option>
|
||||||
|
<option value="all">All</option>
|
||||||
|
<option value="view">View</option>`);
|
||||||
|
}
|
||||||
|
});
|
||||||
Loading…
Reference in New Issue
Block a user