PHP Classes

File: application/views/main/complete.php

Recommend this page to a friend!
  Classes of Abed Nego Ragil Putra   PHP Attendance Management System using Fingerprint   application/views/main/complete.php   Download  
File: application/views/main/complete.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: 10 months ago
Size: 1,130 bytes
 

Contents

Class file image Download
<div class="col-lg-4 col-lg-offset-4">
    <h2>Almost There!</h2>
    <h5>Hello <span><?php echo $firstName; ?></span>. <br>Your username is <span><?php echo $email; ?></span>.</h5>
    <small>Please enter a password to begin using the site.</small>
    <br>
    <br>
    <?php
    $fattr
= array('class' => 'form-signin');
    echo
form_open(site_url() . 'main/complete/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_hidden('user_id', $user_id); ?>
<?php echo form_submit(array('value' => 'Complete', 'class' => 'btn btn-lg btn-primary btn-block')); ?>
<?php echo form_close(); ?>

</div>