I am working to validate users from LDAP via PHP. I have tried some code and I can now validate users perfectly. But in the case of an unsuccessful login, I want to display a modal popup with some custom message. Here is my code -
<?php
if ($_SERVER["REQUEST_METHOD"] == "POST") {
// username and password sent from form
$username = $_POST['username'];
//print($username);
$password = $_POST['password'];
//print($password);
// using ldap bind
$ldaprdn = 'uid=' .$username. ',ou=People,ou=AP,o=abcd.com'; // ldap rdn or dn
$ldappass = $password;
// connect to ldap server
$ldapconn = ldap_connect("ad.abcd.com") or die("Could not connect to LDAP server.");
if ($ldapconn) {
try {
$ldapbind = @ldap_bind($ldapconn, $ldaprdn, $ldappass);
} catch (Exception $e) {
//echo "<script type='text/javascript'>$('#myModal').modal('show');</script>";
//echo "<script type='text/javascript'>$('#myModal').fadeIn('show');</script>";
echo "<script>
$(window).load(function(){
$('#myModal').modal('show');
});
</script>";
}
if ($ldapbind) {
$filter = '(sAMAccountName='.$username.')';
$result = ldap_search($ldapconn, $ldaprdn, "(cn=*)") or exit("Unable to search LDAP server");
$entries = ldap_get_entries($ldapconn, $result);
$userDN = $entries[0]["ikealegacyuid"][0];
echo ('<p style="color:green;">I have the user DN: '.$userDN.'</p>');
$url = 'Location: logpage01.html?uid=' .$userDN;
echo $url;
header($url);
} else {
//echo "<script type='text/javascript'>$('#myModal').modal('show');</script>";
//echo "<script type='text/javascript'>$('#myModal').fadeIn('show');</script>";
echo "<script>
$(window).load(function(){
$('#myModal').modal('show');
});
</script>";
}
}
}
?>
<html>
<head>
<title>Login Page</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<style type = "text/css">
body {
font-family:Arial, Helvetica, sans-serif;
font-size:14px;
}
label {
font-weight:bold;
width:100px;
font-size:14px;
}
.box {
border:#666666 solid 1px;
}
</style>
</head>
<body bgcolor = "#FFFFFF">
<div align = "center">
<div style = "width:300px; border: solid 1px #333333; " align = "left">
<div style = "background-color:#333333; color:#FFFFFF; padding:3px;"><b>Login</b></div>
<div style = "margin:30px">
<form action = "" method = "post">
<label>UserName :</label><input type = "text" name = "username" class = "box"/><br /><br />
<label>Password :</label><input type = "password" name = "password" class = "box" /><br/><br />
<input type = "submit" value = " Submit "/><br />
</form>
</div>
</div>
</div>
<div class="container">
<!-- Modal -->
<div class="modal fade" id="myModal" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true" data-backdrop="static" data-keyboard="false">
<div class="modal-dialog">
<!-- Modal content-->
<div class="modal-content">
<div class="modal-header">
<!-- <button type="button" class="close" data-dismiss="modal">×</button> -->
<h4 class="modal-title">System Message : Failure</h4>
</div>
<div class="modal-body">
<p>Sorry !! Something went wrong. Please contact your administrator.</p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal" onclick="window.location.href = 'logpage01.html';">Close</button>
</div>
</div>
</div>
</div>
</div>
</body>
</html>
I tried many solutions found here. But nothing worked. Need some help on this.
UPDATE: Checked Page Source Also. Seems it's fine. If not, please let me know the issue.
I tried to call modal on page load also. It is working perfectly.
<script type="text/javascript">
$(window).on('load',function(){
$('#myModal').modal('show');
});
</script>