Members page - disable editing password

Permalink
I have created a Members page so work colleagues can check their rosters online. However, on the members page there is an option to edit the password.

Is it possible to hide or disable this so people can't tamper with it?

trixiemay
 
Mnkras replied on at Permalink Reply
Mnkras
copy
concrete/single_pages/profile/edit.php
to
single_pages/profile/edit.php

then remove

<h3><?=t('Change Password')?></h3>
            <p><?=t("Leave blank if you'd like your password to remain the same")?></p>
            <fieldset>
                <div>
                    <?=$form->label('uPasswordNew', t('New Password'))?>
                    <?=$form->password('uPasswordNew')?>
                </div>   
                <div>
                    <?=$form->label('uPasswordNewConfirm', t('Confirm New Password'))?>
                    <?=$form->password('uPasswordNewConfirm')?>
                </div>   
            </fieldset>
trixiemay replied on at Permalink Reply
trixiemay
Thanks Mnkras. That's great.