Advertisement
Guest User

Untitled

a guest
May 28th, 2015
225
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.30 KB | None | 0 0
  1.  
  2. <form id='NOOBS' action='page3.php' method='post' accept-charset='UTF-8'>
  3.     <fieldset >
  4.         <div class="page container col-xs-8 col-xs-offset-2">
  5.             <h3>Skift kodeord</h3>
  6.             <input type='hidden' name='submitted' id='new_password_submitted' value='1'/>
  7.             <div class="page container col-lg-4">
  8.                 <label for='login_username' >UserName*:</label><br>
  9.                 <input type='text' class="form-control" name='login_username' id='login_username'  maxlength="50" /><br><br>
  10.                 <label for='login_password' >Password*:</label><br>
  11.                 <input type='password' class="form-control" name='login_password' id='login_password' maxlength="50" /><br><br>
  12.                 <label for='password' >Nyt kode ord:</label><br>
  13.                 <input type='password' class="form-control" name='new_password_newpassword' id='new_password_newpassword' maxlength="50" /><br><br>
  14.                 <label for='password' >Gentag nyt kode ord:</label><br>
  15.                 <input type='password' class="form-control" name='new_password_newpassword_confirm' id='new_password_newpassword_confirm' maxlength="50" /><br><br>
  16.                 <input type='submit' class="btn btn-primary" name='new_password_submitted' value='Skift Password' action='page3.php' />
  17.             </div>
  18.         </div>
  19.     </fieldset>
  20. </form>
  21. <?php
  22. if (isset($_POST['new_password_submitted'])){
  23.   include "PHP/brugerportal/checkreset.php";
  24. }
  25. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement