]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
openid markup and style
authorsarven <csarven@plantard.controlezvous.ca>
Fri, 23 Jan 2009 08:52:04 +0000 (08:52 +0000)
committersarven <csarven@plantard.controlezvous.ca>
Fri, 23 Jan 2009 08:52:04 +0000 (08:52 +0000)
actions/openidlogin.php
theme/base/css/display.css

index ec5361c8b4f661e8627939febd24743be80fcffa..7a267a2bdc00829dbe1ac4a444bcf9dbdd67dda7 100644 (file)
@@ -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');
     }
 
index 24f5cc8658b3667a2b2ec907533ae00ce68c5881..f8dbd7941260172161dc5e82b520f69fb0e473f7 100644 (file)
@@ -145,7 +145,8 @@ font-weight:bold;
 #newgroup legend,
 #editgroup legend,
 #form_tag_user legend,
-#form_remote_subscribe legend {
+#form_remote_subscribe legend,
+#form_openid_login legend {
 display:none;
 }
 
@@ -173,7 +174,8 @@ width:90%;
 }
 
 #form_login p.form_guide,
-#form_register #settings_rememberme p.form_guide {
+#form_register #settings_rememberme p.form_guide,
+#form_openid_login #settings_rememberme p.form_guide {
 margin-left:0;
 }