diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2016-11-25 19:49:33 +1300 |
---|---|---|
committer | Anton Tananaev <anton.tananaev@gmail.com> | 2016-11-25 19:49:33 +1300 |
commit | 70fac91c8a3386fda51b9c889bfbd27c66cf605a (patch) | |
tree | 27fc56daebcc609dccbde4f702c037b890c852de /web/app | |
parent | 1d0cee71b501123f57aad792f49865230b4a7a2a (diff) | |
download | trackermap-web-70fac91c8a3386fda51b9c889bfbd27c66cf605a.tar.gz trackermap-web-70fac91c8a3386fda51b9c889bfbd27c66cf605a.tar.bz2 trackermap-web-70fac91c8a3386fda51b9c889bfbd27c66cf605a.zip |
Put logo on the login screen
Diffstat (limited to 'web/app')
-rw-r--r-- | web/app/view/Login.js | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/web/app/view/Login.js b/web/app/view/Login.js index d71fed8b..3d53b82a 100644 --- a/web/app/view/Login.js +++ b/web/app/view/Login.js @@ -25,7 +25,7 @@ Ext.define('Traccar.view.Login', { controller: 'login', - title: Strings.loginTitle, + header: false, closable: false, modal: false, @@ -41,6 +41,15 @@ Ext.define('Traccar.view.Login', { }, items: [{ + xtype: 'image', + src: 'logo.svg', + width: 180, + height: 48, + style: { + display: 'block', + margin: '10px auto 25px' + } + }, { xtype: 'combobox', name: 'language', fieldLabel: Strings.loginLanguage, |