How to move or add Atomik login/registration link to top navigation block?

First, in Atomik theme how do I edit the very bottom most footer? It does not highlight when in edit mode.

Second how do I move or add the “Login” link up to the global nav block?

Sorry, nube here, I have searched extensively and find no documentation or discussion of this topic

@tplowe
It appears the “exclude from nav” attribute is not currently working for the login page. Can’t get the login page in a regular autonav block either.

A quick solution could be to add an external link below the home page in your dashboard sitemap. Name it “Login” and direct it to “https://yoursite.com/login”. Uncheck “open in new window” and save. Next, from the sitemap, edit the external link’s permissions. Allow guests to view, while excluding registered users. You’ll now have a login link in your navigation!

If you are able to edit some code, here is a possible solution:
Download the concrete/themes/atomic/ - Folder.
Edit /atomik/elements/footer.php
Cut (or copy)
<?php echo Core::make('helper/navigation')->getLogInOutLink() ?>

Download concrete/blocks/top_navigation_bar/ - folder
Edit /top_navigation_bar/view.php
Add a list element after php for each end, save it as bar_with_login.php (or whatever you want)

<ul class="navbar-nav">
                        <?php foreach ($navigation->getItems() as $item) {
                            /**
                             * @var $item \Concrete\Core\Navigation\Item\PageItem
                             */
                            if (count($item->getChildren()) > 0) { ?>
                                <li class="nav-item dropdown">
                                    <a class="nav-link dropdown-toggle<?= $item->isActive() ? " active" : ""; ?>" data-concrete-toggle="dropdown" target="<?=$controller->getPageItemNavTarget($item)?>" href="<?= $item->getUrl() ?>">
                                        <?=$item->getName()?>
                                    </a>
                                    <ul class="dropdown-menu">
                                        <?php foreach ($item->getChildren() as $dropdownChild) { ?>
                                            <li><a class="dropdown-item<?= $dropdownChild->isActive() ? " active" : ""; ?>" target="<?=$controller->getPageItemNavTarget($dropdownChild)?>" href="<?=$dropdownChild->getUrl()?>"><?=$dropdownChild->getName()?></a></li>
                                        <?php } ?>
                                    </ul>
                                </li>
                            <?php } else { ?>
                                <li class="nav-item"><a class="nav-link<?= $item->isActive() ? " active" : ""; ?>" target="<?=$controller->getPageItemNavTarget($item)?>" href="<?=$item->getUrl()?>"><?=$item->getName()?></a></li>
                            <?php } ?>
                        <?php } ?>
                       <li class="nav-link"><div class="your-style"> <?php echo Core::make('helper/navigation')->getLogInOutLink() ?></div></li>
                    </ul>

Create a folder on the server application/blocks/top_navigation_bar/templates/ and upload your edited file.
Now you can choose your template of the Top Navigation Bar in edit mode.
This works with all autonav blocks.
You will lose the changes in footer.php when updating concrete cms, so you will have to do this little edit again.
The created template of the top navigation bar will not be affected by updates.
And don’t forget to always keep copies of the original files.

Hope it helps

Thanks everyone. I have since migrated to WP, ac Concrete is way more robust than my simple requirements.