PHP Classes

File: application/views/complete.php

Recommend this page to a friend!
  Classes of Abed Nego Ragil Putra   Attendance Login System   application/views/complete.php   Download  
File: application/views/complete.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: Attendance Login System
Manage and authenticate company employees users
Author: By
Last change:
Date: 6 years ago
Size: 1,097 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>