forked from GNUsocial/gnu-social
form_password markup and style
This commit is contained in:
parent
fd6549e438
commit
ac1cc954ae
@ -81,21 +81,35 @@ class PasswordsettingsAction extends AccountSettingsAction
|
|||||||
{
|
{
|
||||||
$user = common_current_user();
|
$user = common_current_user();
|
||||||
$this->elementStart('form', array('method' => 'POST',
|
$this->elementStart('form', array('method' => 'POST',
|
||||||
'id' => 'password',
|
'id' => 'form_password',
|
||||||
|
'class' => 'form_settings',
|
||||||
'action' =>
|
'action' =>
|
||||||
common_local_url('profilesettings')));
|
common_local_url('profilesettings')));
|
||||||
|
$this->elementStart('fieldset');
|
||||||
|
$this->element('legend', null, _('Password change'));
|
||||||
$this->hidden('token', common_session_token());
|
$this->hidden('token', common_session_token());
|
||||||
|
|
||||||
|
|
||||||
|
$this->elementStart('ul', 'form_data');
|
||||||
// Users who logged in with OpenID won't have a pwd
|
// Users who logged in with OpenID won't have a pwd
|
||||||
if ($user->password) {
|
if ($user->password) {
|
||||||
|
$this->elementStart('li');
|
||||||
$this->password('oldpassword', _('Old password'));
|
$this->password('oldpassword', _('Old password'));
|
||||||
|
$this->elementEnd('li');
|
||||||
}
|
}
|
||||||
|
$this->elementStart('li');
|
||||||
$this->password('newpassword', _('New password'),
|
$this->password('newpassword', _('New password'),
|
||||||
_('6 or more characters'));
|
_('6 or more characters'));
|
||||||
|
$this->elementEnd('li');
|
||||||
|
$this->elementStart('li');
|
||||||
$this->password('confirm', _('Confirm'),
|
$this->password('confirm', _('Confirm'),
|
||||||
_('same as password above'));
|
_('same as password above'));
|
||||||
|
$this->elementEnd('li');
|
||||||
|
$this->elementEnd('ul');
|
||||||
|
|
||||||
$this->submit('changepass', _('Change'));
|
$this->submit('changepass', _('Change'));
|
||||||
|
|
||||||
|
$this->elementEnd('fieldset');
|
||||||
$this->elementEnd('form');
|
$this->elementEnd('form');
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -158,4 +172,4 @@ class PasswordsettingsAction extends AccountSettingsAction
|
|||||||
|
|
||||||
$this->showForm(_('Password saved.'), true);
|
$this->showForm(_('Password saved.'), true);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -147,7 +147,8 @@ font-weight:bold;
|
|||||||
|
|
||||||
#form_settings_profile legend,
|
#form_settings_profile legend,
|
||||||
#form_login legend,
|
#form_login legend,
|
||||||
#form_register legend {
|
#form_register legend,
|
||||||
|
#form_password legend {
|
||||||
display:none;
|
display:none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user