My blog is at https://blog.doortodoororganics.com/colorado. Look in the upper right in FF or IE and rather than a Login link, you'll see https://blog.doortodoororganics.com:443/colorado/wp-login.php. And if I do log in, that changes to a long url for logging out.
This is running on multisite, and the other 3 sites are exhibiting the same behaviour. Here is the code in header.php for the theme I'm using. I don't see anything wrong with it.
<ul id="accessibility">
<li><a href="<?php echo get_option('home'); ?>/" title="<?php _e('Go to homepage', 'default'); ?>"><?php _e('Home', 'default'); ?></a></li>
<li><a href="#content" title="Skip to content"><?php _e('Content', 'default'); ?></a></li>
<li><a href="<?php if (get_option('greenpark2_feed_enable') == 'yes') { echo 'http://feeds.feedburner.com/' . get_option('greenpark2_feed_uri'); } else { echo get_bloginfo('rss2_url'); }?>">RSS</a></li>
<?php wp_meta(); ?>
<?php wp_register(); ?>
<li class="last-item"><?php wp_loginout(); ?></li>
</ul>
I am running WP SuperCache, but I disabled it and saw no difference.
Any thoughts or suggestions are most welcome!