| 1234567891011121314151617181920212223242526272829 |
- <div class="container">
- <form action="" method="POST" class="form-inline">
- <fieldset>
- <legend>Zmien hasło</legend>
- <?php if (!empty($info)) : ?>
- <div class="alert alert-info">
- <?php echo $info; ?>
- </div>
- <?php endif; ?>
- <?php if (!empty($msg)) : ?>
- <div class="alert">
- <strong>Warning!</strong> <?php echo $msg; ?>
- </div>
- <?php endif; ?>
- <?php if (!empty($error)) : ?>
- <div class="alert alert-danger">
- <strong>Error!</strong> <?php echo $error; ?>
- </div>
- <?php endif; ?>
- <input name="LOGIN" type="hidden" value="PASSEDIT">
- <label for="ADM_PASSWD">Stare hasło:</label> <input type="password" name="ADM_PASSWD">
- <label for="ADM_PASSWD_NEW">Nowe hasło:</label> <input type="password" name="ADM_PASSWD_NEW">
- <input type="submit" value="Zmień" class="btn btn-primary">
- </fieldset>
- </form>
- <p>
- <a href="index.php" class="btn btn-sm" type="button"><i class="glyphicon glyphicon-arrow-left"></i> Wróć</a>
- </p>
- </div>
|