PHP Classes

File: application/views/forgot.php

Recommend this page to a friend!
  Classes of Abed Nego Ragil Putra   CodeIgniter ion Auth Login   application/views/forgot.php   Download  
File: application/views/forgot.php
Role: Example script
Content type: text/plain
Description: Example script
Class: CodeIgniter ion Auth Login
Manage user records in a database with CodeIgniter
Author: By
Last change: New Feature

Add New Feature
Date: 6 years ago
Size: 1,021 bytes
 

Contents

Class file image Download
<div class="col-lg-4 col-lg-offset-4">
    <h2>Forgot Password</h2>
    <p>Please enter your email address and we'll send you instructions on how to reset your password</p>
    <br>
    <?php $fattr = array('class' => 'form-signin');
         echo
form_open(site_url().'main/forgot/', $fattr); ?>
<div class="form-group">
      <?php echo form_input(array(
         
'name'=>'email',
         
'id'=> 'email',
         
'placeholder'=>'Email',
         
'class'=>'form-control',
         
'value'=> set_value('email'))); ?>
<?php echo form_error('email') ?>
</div>
    <?php if($recaptcha == 'yes'){ ?>
<div style="text-align:center;" class="form-group">
        <div style="display: inline-block;"><?php echo $this->recaptcha->render(); ?></div>
    </div>
    <?php
   
}
    echo
form_submit(array('value'=>'Submit', 'class'=>'btn btn-lg btn-primary btn-block')); ?>
<?php echo form_close(); ?>
    <br>
    <p>Registered? <a href="<?php echo site_url();?>main/login">Login</a></p>
</div>