Current File : /home/giriqfky/public_html/Barga/application/modules/sessions/views//send_reset_email.php
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<link rel="shortcut icon" href="<?php echo base_url().'assets/img/favicon.ico';?>" type="image/x-icon">
<link rel="icon" href="<?php echo base_url().'assets/img/favicon.ico';?>" type="image/x-icon">
<title><?php echo SITE_NAME." | ".strtoupper($title); ?></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.7 -->
<link rel="stylesheet" href="<?php echo base_url();?>assets/css/bootstrap.min.css">
<!-- Font Awesome -->
<link rel="stylesheet" href="<?php echo base_url();?>assets/css/font-awesome.min.css">
<!-- Ionicons -->
<link rel="stylesheet" href="<?php echo base_url();?>assets/css/ionicons.min.css">
<!-- Theme style -->
<link rel="stylesheet" href="<?php echo base_url();?>assets/css/AdminLTE.min.css">
<!-- iCheck -->
<link rel="stylesheet" href="<?php echo base_url();?>assets/css/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]-->
<!-- 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="hold-transition login-page">
<div class="login-box">
<div class="login-logo">
<h2>Forgot Password</h2>
</div>
<!-- /.login-logo -->
<div class="login-box-body">
<?php if(validation_errors()){?><div class="alert alert-info"><small class="text-danger"><?php echo validation_errors(); ?></small></div><?php }?>
<?php if($this->session->flashdata('msg_error')){?>
<div class="alert alert-info"><small class="text-danger"><?php echo $this->session->flashdata('msg_error');?></small></div>
<?php }?>
<?php if($this->session->flashdata('msg_success')){?>
<div class="alert alert-info"><small class="text-success"><?php echo $this->session->flashdata('msg_success');?></small></div>
<?php }?>
<form action="<?php echo site_url('sessions/sendResetEmail');?>" method="post">
<div class="form-group has-feedback">
<input type="text" class="form-control" placeholder="Email" name="user_email" value="">
<span class="fa fa-envelope-o form-control-feedback"></span> </div>
<div class="row">
<!-- /.col -->
<div class="col-xs-4">
<a href="<?php echo site_url('sessions');?>" class="btn btn-primary btn-block btn-flat" style="background: #37474f; border: #37474f; color: #fff;">Back</a>
</div>
<div class="col-xs-4">
<button type="submit" class="btn btn-primary btn-block btn-flat" name="btn_login" style="background: #37474f; border: #37474f; color: #fff;">Send</button>
</div>
<!-- /.col -->
</div>
</form>
</div>
<!-- /.login-box-body -->
</div>
<!-- /.login-box -->
</body>
</html>