Please disregard the 'View article...' shown at the bottom of many posts as this is the result of restoring old forum posts from a backup.
Popup Login View (Bootstrap 3)
                    Here's a quick way to add a popup Log In/Out dialog to to a view template
                            <a class="navbar-link loginpopup" href="{link controller=login action=showlogin}" title="{'Log in to the web site'|gettext}" style="text-decoration: none;">{if $user->isLoggedIn()}{'Log Out'|gettext}{else}{'Log In'|gettext}{/if}</a>
{script unique="dialog-`$__loc->src`" jquery="bootstrap-dialog" bootstrap="modal,transition"}
{literal}
    $('#topnavbar a.loginpopup').click(function(e) {
        BootstrapDialog.show({
            title: e.target.title,
            message: function(dialog) {
                var $message = $('<div></div>');
                var pageToLoad = dialog.getData('pageToLoad');
                $message.load(pageToLoad);
                return $message;
            },
            data: {
                'pageToLoad': EXPONENT.PATH_RELATIVE + "index.php?controller=login&action=showlogin&ajax_action=1"
            }
        });
        e.preventDefault();
    });
{/literal}
{/script}                
Comments
Then in my theme I added: <?php expTheme::module(array("controller"=>"login","action"=>"showlogin","view"=>"showlogin_popup")); ?>
All that got me was link that says Login and it takes me to another page. There's no popup at all.