From 1b9447853bb3381bb9f43b60fdd9cab41e92b53c Mon Sep 17 00:00:00 2001 From: STJrInuyasha Date: Tue, 25 Apr 2017 06:06:24 -0700 Subject: [PATCH] Login link for single user instances (#2393) * Login link for single user instances * Flip the if statement around Fixes AuthorizationController tests --- app/assets/stylesheets/footer.scss | 2 +- app/views/layouts/public.html.haml | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/app/assets/stylesheets/footer.scss b/app/assets/stylesheets/footer.scss index 719bfcf43..07ecb5e75 100644 --- a/app/assets/stylesheets/footer.scss +++ b/app/assets/stylesheets/footer.scss @@ -13,7 +13,7 @@ } } - .powered-by { + .powered-by, .single-user-login { font-weight: 400; a { diff --git a/app/views/layouts/public.html.haml b/app/views/layouts/public.html.haml index 556102f53..7bb0f71ff 100644 --- a/app/views/layouts/public.html.haml +++ b/app/views/layouts/public.html.haml @@ -4,6 +4,10 @@ - content_for :content do .container= yield .footer + - if !user_signed_in? && single_user_mode? + %span.single-user-login + = link_to t('auth.login'), new_user_session_path + = "\u2014" %span.domain= link_to site_hostname, root_path %span.powered-by = t('generic.powered_by', link: link_to('Mastodon', 'https://github.com/tootsuite/mastodon')).html_safe