passedit.php 997 B

1234567891011121314151617181920212223242526272829
  1. <div class="container">
  2. <form action="" method="POST" class="form-inline">
  3. <fieldset>
  4. <legend>Zmien hasło</legend>
  5. <?php if (!empty($info)) : ?>
  6. <div class="alert alert-info">
  7. <?php echo $info; ?>
  8. </div>
  9. <?php endif; ?>
  10. <?php if (!empty($msg)) : ?>
  11. <div class="alert">
  12. <strong>Warning!</strong> <?php echo $msg; ?>
  13. </div>
  14. <?php endif; ?>
  15. <?php if (!empty($error)) : ?>
  16. <div class="alert alert-danger">
  17. <strong>Error!</strong> <?php echo $error; ?>
  18. </div>
  19. <?php endif; ?>
  20. <input name="LOGIN" type="hidden" value="PASSEDIT">
  21. <label for="ADM_PASSWD">Stare hasło:</label> <input type="password" name="ADM_PASSWD">
  22. <label for="ADM_PASSWD_NEW">Nowe hasło:</label> <input type="password" name="ADM_PASSWD_NEW">
  23. <input type="submit" value="Zmień" class="btn btn-primary">
  24. </fieldset>
  25. </form>
  26. <p>
  27. <a href="index.php" class="btn btn-sm" type="button"><i class="glyphicon glyphicon-arrow-left"></i> Wróć</a>
  28. </p>
  29. </div>