" . $ini ['app_title'] . ""; if (isset ( $_POST ['user'] )) { $username = $_POST ['user']; $passwd = $_POST ['pwd']; if (!check_username($username) || !check_password_quality($passwd)) { ?>
User " . htmlspecialchars ( $username ) . " is invalid!.

"; } else { ?>
user_exists ( $username )) { $htpasswd->user_add ( $username, $passwd ); echo "

User " . htmlspecialchars ( $username ) . " created.

"; } else { $htpasswd->user_update ( $username, $passwd ); echo "

User " . htmlspecialchars ( $username ) . " changed.

"; } } ?>

Create or change user and password:

Users found:

    get_users (); foreach ( $users as $user ) { echo "
  • " . htmlspecialchars ( $user ) . "Delete" . "
  • \n"; } ?>


Create new users for the htpasswd file here. A user can change his/her password with this self service link.
You can fill the username in the form if you add the url parameter user=<username>