diff --git a/CHANGELOG.md b/CHANGELOG.md
index efb9cabf0..7f3ffc53c 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -65,6 +65,7 @@ Version 1.5.10
- allow to group export in UI
+<<<<<<< HEAD
Version 1.5.11
==============
@@ -88,3 +89,7 @@ Master branch
- fix search: usage of parenthesis
- add DQL function REPLACE for replacing in strings: "REPLACE(string, 'from', 'to')"
- add function to format phonenumber
+- improve `chill_print_or_message` to support date time;
+- add a module `show_hide` for javascript;
+- load assets using functions ;
+- load a `runtime.js` assets for objects shared by webpack ;
diff --git a/Resources/public/main.js b/Resources/public/main.js
new file mode 100644
index 000000000..ffbe55c46
--- /dev/null
+++ b/Resources/public/main.js
@@ -0,0 +1,36 @@
+// import jQuery
+const $ = require('jquery');
+// create global $ and jQuery variables
+global.$ = global.jQuery = $;
+
+const moment = require('moment');
+global.moment = moment;
+
+const pikaday = require('pikaday-jquery');
+
+const select2 = require('select2');
+global.select2 = select2;
+
+// import js
+import {chill} from './js/chill.js';
+global.chill = chill;
+
+// css
+require('./sass/scratch.scss');
+require('./css/chillmain.css');
+require('./css/pikaday.css');
+require('./js/collection/collections.js');
+require('./modules/breadcrumb/index.js');
+require('./modules/download-report/index.js');
+//require('./css/scratch.css');
+//require('./css/select2/select2.css');
+require('select2/dist/css/select2.css');
+require('./modules/select_interactive_loading/index.js');
+require('./modules/export-list/export-list.scss');
+
+// img
+require('./img/favicon.ico');
+require('./img/logo-chill-sans-slogan_white.png');
+require('./img/logo-chill-outil-accompagnement_white.png');
+
+
diff --git a/Resources/views/Login/login.html.twig b/Resources/views/Login/login.html.twig
index 7cdecef26..de57ba4d2 100644
--- a/Resources/views/Login/login.html.twig
+++ b/Resources/views/Login/login.html.twig
@@ -15,7 +15,6 @@
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see