diff options
author | Evan Prodromou <evan@prodromou.name> | 2008-06-18 12:01:11 -0400 |
---|---|---|
committer | Evan Prodromou <evan@prodromou.name> | 2008-06-18 12:01:11 -0400 |
commit | 71dab316c3d65d25e98b3f749510103ab6a778a2 (patch) | |
tree | 20792616eb0f0e30a8db90712ce91bbc1f37431a /actions | |
parent | 30c3cd552b9b2424167818c96de4c813c120111e (diff) |
better presentation on openidsettings
darcs-hash:20080618160111-84dde-70cc4c0a40f14aa6a5f7b05f6b8a8947bb5025f7.gz
Diffstat (limited to 'actions')
-rw-r--r-- | actions/openidsettings.php | 29 |
1 files changed, 22 insertions, 7 deletions
diff --git a/actions/openidsettings.php b/actions/openidsettings.php index d4ec8a8cd..0355534d7 100644 --- a/actions/openidsettings.php +++ b/actions/openidsettings.php @@ -44,8 +44,17 @@ class OpenidsettingsAction extends SettingsAction { common_element('p', NULL, _t('If you want to add an OpenID to your account, ' . 'enter it in the box below and click "Add".')); - common_input('openid_url', _t('OpenID URL')); - common_submit('add', _t('Add')); + common_element_start('p'); + common_element('label', array('for' => 'openid_url'), + _t('OpenID URL')); + common_element('input', array('name' => 'openid_url', + 'type' => 'text', + 'id' => 'openid_url')); + common_element('input', array('type' => 'submit', + 'id' => 'add', + 'name' => 'add', + 'value' => _t('Add'))); + common_element_end('p'); common_element_end('form'); $oid = new User_openid(); @@ -60,17 +69,23 @@ class OpenidsettingsAction extends SettingsAction { $idx = 0; while ($oid->fetch()) { - common_element_start('p'); common_element_start('form', array('method' => 'POST', - 'id' => 'openiddelete-' . $idx, + 'id' => 'openiddelete' . $idx, 'action' => common_local_url('openidsettings'))); + common_element_start('p'); common_element('a', array('href' => $oid->canonical), $oid->display); - common_hidden('openid_url', $oid->canonical); - common_submit('remove', _t('Remove')); - common_element_end('form'); + common_element('input', array('type' => 'hidden', + 'id' => 'openid_url'.$idx, + 'name' => 'openid_url', + 'value' => $oid->canonical)); + common_element('input', array('type' => 'submit', + 'id' => 'remove'.$idx, + 'name' => 'remove', + 'value' => _t('Add'))); common_element_end('p'); + common_element_end('form'); $idx++; } } |