From 71dab316c3d65d25e98b3f749510103ab6a778a2 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Wed, 18 Jun 2008 12:01:11 -0400 Subject: better presentation on openidsettings darcs-hash:20080618160111-84dde-70cc4c0a40f14aa6a5f7b05f6b8a8947bb5025f7.gz --- actions/openidsettings.php | 29 ++++++++++++++++++++++------- 1 file changed, 22 insertions(+), 7 deletions(-) (limited to 'actions/openidsettings.php') 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++; } } -- cgit v1.2.3-54-g00ecf