Server IP : 164.52.202.56 / Your IP : 216.73.216.204 Web Server : Apache System : Linux e2e-70-56.ssdcloudindia.net 4.18.0-553.27.1.el8_10.x86_64 #1 SMP Tue Nov 5 04:50:16 EST 2024 x86_64 User : rubyaromatics ( 1052) PHP Version : 7.2.34 Directory (0755) : /home/rubyaromatics/public_html/crm/application/views/layout/../auth/ |
[ Home ] | [ Terminal ] | [ Upload File ] |
---|
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <title>Forgot password</title> <!-- Tell the browser to be responsive to screen width --> <meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport"> <!-- Bootstrap 3.3.6 --> <link rel="stylesheet" href="<?php echo base_url();?>assets/bootstrap/css/bootstrap.min.css"> <!-- Font Awesome --> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.5.0/css/font-awesome.min.css"> <!-- Ionicons --> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/ionicons/2.0.1/css/ionicons.min.css"> <!-- Theme style --> <link rel="stylesheet" href="<?php echo base_url();?>assets/dist/css/AdminLTE.min.css"> <!-- iCheck --> <link rel="stylesheet" href="<?php echo base_url();?>assets/plugins/iCheck/square/blue.css"> <!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries --> <!-- WARNING: Respond.js doesn't work if you view the page via file:// --> <!--[if lt IE 9]> <script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script> <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script> <![endif]--> </head> <body class="hold-transition login-page"> <div class="login-box"> <div class="login-logo"> <?php $data = $this->db->get('company_settings')->row(); ?> <b> <img src="<?php echo base_url($data->logo); ?>" width="50%"/></b><br><h5><?php echo $data->site_short_name; ?></h5> </div> <!-- /.login-logo --> <div class="login-box-body"> <p class="login-box-msg">Forgot Password</p> <div id="infoMessage"><?php echo $message;?></div> <!-- <form action="../../index2.html" method="post"> --> <?php echo form_open("auth/forgot_password");?> <label for="identity"><?php echo (($type=='email') ? sprintf(lang('forgot_password_email_label'), $identity_label) : sprintf(lang('forgot_password_identity_label'), $identity_label));?></label> <div class="form-group has-feedback"> <?php echo form_input($identity,'','class="form-control" placeholder="Email"');?> <span class="glyphicon glyphicon-envelope form-control-feedback"></span> </div> <div class="row"> <div class="col-xs-4"> <?php echo form_submit('submit', lang('forgot_password_submit_btn'),'class="btn btn-primary btn-block btn-flat"');?> </div> </div> <?php echo form_close();?> <!-- </form> --> <!-- <a href="#">I forgot my password</a><br> --> <!-- <a href="register.html" class="text-center">Register a new membership</a> --> </div> <!-- /.login-box-body --> </div> <!-- /.login-box --> <!-- jQuery 2.2.3 --> <script src="<?php echo base_url();?>assets/plugins/jQuery/jquery-2.2.3.min.js"></script> <!-- Bootstrap 3.3.6 --> <script src="<?php echo base_url();?>assets/bootstrap/js/bootstrap.min.js"></script> <!-- iCheck --> <script src="<?php echo base_url();?>assets/plugins/iCheck/icheck.min.js"></script> <script> $(function () { $('input').iCheck({ checkboxClass: 'icheckbox_square-blue', radioClass: 'iradio_square-blue', increaseArea: '20%' // optional }); }); </script> </body> </html> <!-- <h1><?php echo lang('forgot_password_heading');?></h1> <p><?php echo sprintf(lang('forgot_password_subheading'), $identity_label);?></p> <div id="infoMessage"><?php echo $message;?></div> <?php echo form_open("auth/forgot_password");?> <p> <label for="identity"><?php echo (($type=='email') ? sprintf(lang('forgot_password_email_label'), $identity_label) : sprintf(lang('forgot_password_identity_label'), $identity_label));?></label> <br /> <?php echo form_input($identity);?> </p> <p><?php echo form_submit('submit', lang('forgot_password_submit_btn'));?></p> <?php echo form_close();?> -->