aboutsummaryrefslogtreecommitdiffhomepage
path: root/templates/preferences_page.php
blob: 2744747d8d8b9c38c082d61258b983226aed298a (plain)
1
2
3
4
5
6
7
<?php call_template('skeleton', ['pageTitle' => __('preferences.pageTitle')], function () {
    global $user, $saved;
    call_template('preferences_form', ['user' => $user, 'saved' => $saved ?? false]);
    ?>
    <h2><?= __('changePassword.heading') ?></h2>
    <?php call_template('change_password_form');
});