whoami7 - Manager
:
/
proc
/
self
/
root
/
home
/
papecmvm
/
public_html
/
application
/
views
/
Upload File:
files >> //proc/self/root/home/papecmvm/public_html/application/views/changepass.php
<?php require 'header.php'; ?> <?php require 'menu.php'; ?> <!-- Content Wrapper. Contains page content --> <div class="content-wrapper"> <?php $session_data=$this->session->all_userdata();?> <!-- Content Header (Page header) --> <section class="content-header"> <h1> Profile </h1> <ol class="breadcrumb"> <li><a href="<?php echo base_url();?>"><i class="fa fa-dashboard"></i> Dashboard</a></li> <li class="active">Profile</li> </ol> </section> <!-- Main content --> <section class="content"> <div class="row"> <div class="col-xs-6"> <div class="box box-success"> <div class="box-header"> </div><!-- /.box-header --> <div class="box-body"> <?php if($this->session->flashdata('msg')){ echo $this->session->flashdata('msg'); } ?> <?php foreach ($data as $row) { ?> <?php $attributes = array('class' =>'defaultForm','data-bv-message'=>'This value is not valid','data-bv-feedbackicons-validating'=>'glyphicon glyphicon-refresh'); echo form_open("admin/usermanagement/editUserpass/".$session_data['userinfo'][0]['uid']."",$attributes);?> <div class="form-group input-group"> <span class="input-group-addon"><i class="fa fa-tag" ></i></span> <input type="text" class="form-control" placeholder="Desired Username" name="username" required="required" value="<?php echo $row["username"]; ?>" disabled="disabled"/> </div> <div class="form-group"> <input type="password" class="form-control" placeholder="Old Password " name="old" required="required" data-bv-notempty-message="The old password is required and cannot be empty" /> </div> <div class="form-group "> <input type="password" class="form-control" placeholder="Enter Password" name="password" required data-bv-notempty-message="The password is required and cannot be empty" data-bv-identical="true" data-bv-identical-field="confirmPassword" data-bv-identical-message="The password and its confirm are not the same" data-bv-different="true" data-bv-different-field="username" data-bv-different-message="The password cannot be the same as username" data-bv-stringlength="true" data-bv-stringlength-min="8" data-bv-stringlength-message="The Password must be a 8 digits." /> </div> <div class="form-group "> <input type="password" class="form-control" name="confirmPassword" placeholder="Enter Retype Password" required data-bv-notempty-message="The confirm password is required and cannot be empty" data-bv-identical="true" data-bv-identical-field="password" data-bv-identical-message="The password and its confirm are not the same" data-bv-different="true" data-bv-different-field="username" data-bv-different-message="The password cannot be the same as username"/> </div> <button class="btn btn-primary" type="submit">Change Password</button> <?php } ?> <?php echo form_close(); ?> </div><!-- /.box-body --> </div><!-- /.box --> </div><!--End .col-xs-12--> </div> <!-- /.row --> <!-- Your Page Content Here --> </section><!-- /.content --> </div><!-- /.content-wrapper --> <?php require 'footer.php'; ?>
Copyright ©2021 || Defacer Indonesia