summaryrefslogtreecommitdiff
path: root/actions/passwordsettings.php
diff options
context:
space:
mode:
authorsarven <csarven@plantard.controlezvous.ca>2009-01-21 19:56:18 +0000
committersarven <csarven@plantard.controlezvous.ca>2009-01-21 19:56:18 +0000
commitac1cc954ae080dbbb906cae009148eb3796de43d (patch)
tree609e959391026834ae92554d516c3758f4f0ed78 /actions/passwordsettings.php
parentfd6549e438a719f3c884b517f26293da181f9a35 (diff)
form_password markup and style
Diffstat (limited to 'actions/passwordsettings.php')
-rw-r--r--actions/passwordsettings.php20
1 files changed, 17 insertions, 3 deletions
diff --git a/actions/passwordsettings.php b/actions/passwordsettings.php
index f96da13bd..17b2de4e8 100644
--- a/actions/passwordsettings.php
+++ b/actions/passwordsettings.php
@@ -81,21 +81,35 @@ class PasswordsettingsAction extends AccountSettingsAction
{
$user = common_current_user();
$this->elementStart('form', array('method' => 'POST',
- 'id' => 'password',
+ 'id' => 'form_password',
+ 'class' => 'form_settings',
'action' =>
common_local_url('profilesettings')));
-
+ $this->elementStart('fieldset');
+ $this->element('legend', null, _('Password change'));
$this->hidden('token', common_session_token());
+
+ $this->elementStart('ul', 'form_data');
// Users who logged in with OpenID won't have a pwd
if ($user->password) {
+ $this->elementStart('li');
$this->password('oldpassword', _('Old password'));
+ $this->elementEnd('li');
}
+ $this->elementStart('li');
$this->password('newpassword', _('New password'),
_('6 or more characters'));
+ $this->elementEnd('li');
+ $this->elementStart('li');
$this->password('confirm', _('Confirm'),
_('same as password above'));
+ $this->elementEnd('li');
+ $this->elementEnd('ul');
+
$this->submit('changepass', _('Change'));
+
+ $this->elementEnd('fieldset');
$this->elementEnd('form');
}
@@ -158,4 +172,4 @@ class PasswordsettingsAction extends AccountSettingsAction
$this->showForm(_('Password saved.'), true);
}
-} \ No newline at end of file
+}