| 
<!DOCTYPE html><html>
 <head>
 <meta charset="UTF-8">
 <title>CodeInsect | Reset Password</title>
 <meta content='width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no' name='viewport'>
 <link href="<?php echo base_url(); ?>assets/bower_components/bootstrap/dist/css/bootstrap.min.css" rel="stylesheet" type="text/css" />
 <link href="<?php echo base_url(); ?>assets/bower_components/font-awesome/css/font-awesome.min.css" rel="stylesheet" type="text/css" />
 <link href="<?php echo base_url(); ?>assets/dist/css/AdminLTE.min.css" rel="stylesheet" type="text/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]-->
 <!-- Google Font -->
 <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,600,700,300italic,400italic,600italic">
 </head>
 <body class="login-page">
 <div class="login-box">
 <div class="login-logo">
 <a href="#"><b>CodeInsect</b><br>Admin System</a>
 </div><!-- /.login-logo -->
 <div class="login-box-body">
 <p class="login-box-msg">Reset Password</p>
 <?php $this->load->helper('form'); ?>
 <div class="row">
 <div class="col-md-12">
 <?php echo validation_errors('<div class="alert alert-danger alert-dismissable">', ' <button type="button" class="close" data-dismiss="alert" aria-hidden="true">×</button></div>'); ?>
 </div>
 </div>
 <?php
 $this->load->helper('form');
 $error = $this->session->flashdata('error');
 if($error)
 {
 ?>
 <div class="alert alert-danger alert-dismissable">
 <button type="button" class="close" data-dismiss="alert" aria-hidden="true">×</button>
 <?php echo $this->session->flashdata('error'); ?>
 </div>
 <?php } ?>
 
 <form action="<?php echo base_url(); ?>createPasswordUser" method="post">
 <div class="form-group has-feedback">
 <input type="email" class="form-control" placeholder="Email" name="email" value="<?php echo $email; ?>" readonly required />
 <span class="glyphicon glyphicon-envelope form-control-feedback"></span>
 <input type="hidden" name="activation_code"  value="<?php echo $activation_code; ?>" required />
 </div>
 <hr>
 <div class="form-group has-feedback">
 <input type="password" class="form-control" placeholder="Password" name="password" required />
 <span class="glyphicon glyphicon-lock form-control-feedback"></span>
 </div>
 <div class="form-group has-feedback">
 <input type="password" class="form-control" placeholder="Confirm Password" name="cpassword" required />
 <span class="glyphicon glyphicon-lock form-control-feedback"></span>
 </div>
 <div class="row">
 <div class="col-xs-8">
 <!-- <div class="checkbox icheck">
 <label>
 <input type="checkbox"> Remember Me
 </label>
 </div>  -->
 </div><!-- /.col -->
 <div class="col-xs-4">
 <input type="submit" class="btn btn-primary btn-block btn-flat" value="Submit" />
 </div><!-- /.col -->
 </div>
 </form>
 
 </div><!-- /.login-box-body -->
 </div><!-- /.login-box -->
 
 <script src="<?php echo base_url(); ?>assets/bower_components/jquery/dist/jquery.min.js"></script>
 <script src="<?php echo base_url(); ?>assets/bower_components/bootstrap/dist/js/bootstrap.min.js"></script>
 </body>
 </html>
 |