diff options
author | Zach Copley <zach@controlyourself.ca> | 2009-01-23 01:20:00 -0800 |
---|---|---|
committer | Zach Copley <zach@controlyourself.ca> | 2009-01-23 01:20:00 -0800 |
commit | 0ef33663ce0b3739e8e9eb3b9951dee5059c6b3b (patch) | |
tree | 179a9aaa7f7828489e93fca86ceeaa01b4d270a2 /actions/openidlogin.php | |
parent | b13374faa568e4e77478b9ffe5c800758ffdc3f3 (diff) | |
parent | 6b5fb0ab7d8c2e982052a48270e882e7f7379743 (diff) |
Merge branch 'master' of ssh://zach@dev.controlyourself.ca/var/www/trunk
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'); } |