diff options
-rw-r--r-- | templates/web/bromley/header.html | 22 | ||||
-rw-r--r-- | web/cobrands/bromley/layout.scss | 12 |
2 files changed, 8 insertions, 26 deletions
diff --git a/templates/web/bromley/header.html b/templates/web/bromley/header.html index 69627923a..b7ef3aebc 100644 --- a/templates/web/bromley/header.html +++ b/templates/web/bromley/header.html @@ -42,12 +42,14 @@ <a href="http://www.bromley.gov.uk"><img src="/cobrands/bromley/bromley-logo.jpg" alt="London Borough of Bromley logo" width="159" height="114" style="width:159px; height:114px;" /></a> </div> - <!-- <div class="sign-in"> - <p> - You are not signed in. <a href="https://www.bromley.gov.uk/sign_in?referer=%2fa_to_z">Sign in</a> - or <a href="https://www.bromley.gov.uk/register">register</a>? - </p> - </div> --> + <div class="sign-in"> + [% IF c.user_exists %] + <p> + [% tprintf(loc('Hi %s'), c.user.name || c.user.email) %] + <a href="/auth/sign_out">[% loc('sign out') %]</a> + </p> + [% END %] + </div> <div class="main-menu"> <ul> @@ -76,14 +78,6 @@ </header> <div id="user-meta"> - [% IF c.user_exists %] - <p> - [% tprintf(loc('Hi %s'), c.user.name || c.user.email) %] - <a href="/auth/sign_out">[% loc('sign out') %]</a> - </p> - [% ELSE %] - <!-- <a href="/auth">[% loc('Sign in') %]</a> --> - [% END %] </div> <h1 class="main desk-only">Reporting a problem in Bromley’s streets or parks</h1> diff --git a/web/cobrands/bromley/layout.scss b/web/cobrands/bromley/layout.scss index 183f17722..45115dc2f 100644 --- a/web/cobrands/bromley/layout.scss +++ b/web/cobrands/bromley/layout.scss @@ -34,18 +34,6 @@ body.frontpage { } } } -#user-meta { - p { - top: -1em; - } -} -body.frontpage { - #user-meta { - p { - top: -2em; - } - } -} // Don't want FixMyStreet logo on desktop, and we have a skip to content in // Bromley header |