Advertisement
Guest User

f

a guest
May 2nd, 2016
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.84 KB | None | 0 0
  1.         <form action="includes/update_pass.php" method="post">
  2.           <input type="hidden" name="id" value=<?php echo "'".$_SESSION['user_id']."'" ?> />
  3.           <div class="form-group">
  4.             <input class="form-control" id="currentPass" name="currentPass" placeholder="Current Password" required />
  5.           </div>
  6.           <div class="form-group">
  7.             <input class="form-control" id="newPass" name="newPass" placeholder="New Password" required />
  8.           </div>
  9.           <div class="form-group">
  10.             <input class="form-control" id="confirmPass" name="confirmPass" placeholder="Confirm New Password" required />
  11.           </div>
  12.           <button class="btn btn-primary" onclick="passformhash(this.form, this.form.currentPass, this.form.newPass, this.form.confrimPass);">Update Password</button>
  13.  
  14.         </form>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement