PHP Classes

File: application/views/main/reset_password.php

Recommend this page to a friend!
  Classes of Abed Nego Ragil Putra   PHP Attendance Management System using Fingerprint   application/views/main/reset_password.php   Download  
File: application/views/main/reset_password.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: PHP Attendance Management System using Fingerprint
Keep track of employee attendance with fingerprint
Author: By
Last change:
Date: 7 months ago
Size: 1,002 bytes
 

Contents

Class file image Download
<div class="col-lg-4 col-lg-offset-4">
    <h2>Reset your password</h2>
    <h5>Hello <span><?php echo $firstName; ?></span>, <br>Please enter your password 2x below to reset.</h5>
    <?php
    $fattr
= array('class' => 'form-signin');
    echo
form_open(site_url() . 'main/reset_password/token/' . $token, $fattr); ?>
<div class="form-group">
        <?php echo form_password(array('name' => 'password', 'id' => 'password', 'placeholder' => 'Password', 'class' => 'form-control', 'value' => set_value('password'))); ?>
<?php echo form_error('password') ?>
</div>
    <div class="form-group">
        <?php echo form_password(array('name' => 'passconf', 'id' => 'passconf', 'placeholder' => 'Confirm Password', 'class' => 'form-control', 'value' => set_value('passconf'))); ?>
<?php echo form_error('passconf') ?>
</div>
    <?php echo form_submit(array('value' => 'Reset Password', 'class' => 'btn btn-lg btn-primary btn-block')); ?>
<?php echo form_close(); ?>
</div>