diff options
author | sarven <csarven@plantard.controlezvous.ca> | 2009-01-23 08:52:04 +0000 |
---|---|---|
committer | sarven <csarven@plantard.controlezvous.ca> | 2009-01-23 08:52:04 +0000 |
commit | 6c9bbdb56174f106ceeebab9a4b6f0ee452ee17f (patch) | |
tree | 2455f9b02bc92255a87402c0cf94cd95e2f09563 /actions/openidlogin.php | |
parent | 843358be44b9b107441cbc2e35d7794343762fb0 (diff) |
openid markup and style
Diffstat (limited to 'actions/openidlogin.php')
-rw-r--r-- | actions/openidlogin.php | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/actions/openidlogin.php b/actions/openidlogin.php index ec5361c8b..7a267a2bd 100644 --- a/actions/openidlogin.php +++ b/actions/openidlogin.php @@ -90,16 +90,27 @@ class OpenidloginAction extends Action function showContent() { $formaction = common_local_url('openidlogin'); $this->elementStart('form', array('method' => 'post', - 'id' => 'openidlogin', + 'id' => 'form_openid_login', + 'class' => 'form_settings', 'action' => $formaction)); + $this->elementStart('fieldset'); + $this->element('legend', null, _('OpenID login')); $this->hidden('token', common_session_token()); + + $this->elementStart('ul', 'form_data'); + $this->elementStart('li'); $this->input('openid_url', _('OpenID URL'), $this->openid_url, _('Your OpenID URL')); + $this->elementEnd('li'); + $this->elementStart('li', array('id' => 'settings_rememberme')); $this->checkbox('rememberme', _('Remember me'), false, _('Automatically login in the future; ' . 'not for shared computers!')); + $this->elementEnd('li'); + $this->elementEnd('ul'); $this->submit('submit', _('Login')); + $this->elementEnd('fieldset'); $this->elementEnd('form'); } |