diff options
author | Frederick Muriuki Muriithi | 2025-02-03 13:41:54 -0600 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2025-02-03 13:41:54 -0600 |
commit | 14ccf06f59962a26898381acbec69e41be059bfd (patch) | |
tree | 14ab25fc199d7bdf7890ea4f26f329c32ba193b3 /uploader/templates/base.html | |
parent | 23f16d42127308c6f155be2846f3bdab8aa9af94 (diff) | |
download | gn-uploader-14ccf06f59962a26898381acbec69e41be059bfd.tar.gz |
Remove user's email: replace with user icon.
Diffstat (limited to 'uploader/templates/base.html')
-rw-r--r-- | uploader/templates/base.html | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/uploader/templates/base.html b/uploader/templates/base.html index b20b350..a08c3e5 100644 --- a/uploader/templates/base.html +++ b/uploader/templates/base.html @@ -30,7 +30,9 @@ <li> {%if user_logged_in()%} <a href="{{url_for('oauth2.logout')}}" - title="Log out of the system">{{user_email()}} — Log Out</a> + title="Log out of the system"> + <span class="glyphicon glyphicon-user"></span> + Log Out</a> {%else%} <a href="{{authserver_authorise_uri()}}" title="Log in to the system">Log In</a> |