diff --git a/public/index.frontoffice.html b/public/index.frontoffice.html
index 106aebca..3e762e29 100644
--- a/public/index.frontoffice.html
+++ b/public/index.frontoffice.html
@@ -1,30 +1,32 @@
+{{ if eq .license "agpl" -}}
+
+{{ end -}}
-
+
-
{{- range .bundle }}
{{- end }}
+
-
-
-
+
-
-
-
diff --git a/server/ctrl/static/loader.html b/server/ctrl/static/loader.html
index bc3c4bd5..7339f43f 100644
--- a/server/ctrl/static/loader.html
+++ b/server/ctrl/static/loader.html
@@ -1,200 +1,2 @@
-{{ define "loader-cat" }}
-class ComponentBootScreen extends HTMLElement {
- connectedCallback() {
- this.innerHTML = this.render();
- this.timeout = setTimeout(function(){
- const $rbw = document.querySelector("#rbw .w");
- $rbw.innerHTML = $rbw.innerHTML.repeat(10);
-
- const $loader = document.querySelector("#n-lder");
- $loader.classList.add("loading");
- }, 500);
- }
-
- disconnectedCallback() {
- clearTimeout(this.timeout);
- }
-
- render() {
- return `
-
-
-
-
-
-
-
-
`;
- }
-}
-customElements.define("component-bootscreen", ComponentBootScreen);
-{{ end }}
-{{ define "loader-basic" }}
-class ComponentBootScreen extends HTMLElement {
- connectedCallback() {
- this.innerHTML = `
-
-
-
`;
- }
-}
-customElements.define("component-bootscreen", ComponentBootScreen);
-{{ end }}
+{{ define "loader-cat" }}customElements.define("component-bootscreen", class ComponentBootScreen extends HTMLElement { connectedCallback() { this.innerHTML = this.render(); this.timeout = setTimeout(function(){ const $rbw = document.querySelector("#rbw .w"); $rbw.innerHTML = $rbw.innerHTML.repeat(10); const $loader = document.querySelector("#n-lder"); $loader.classList.add("loading"); }, 500); } disconnectedCallback() { clearTimeout(this.timeout); } render() { return ``; }});{{ end }}
+{{ define "loader-basic" }}customElements.define("component-bootscreen", class ComponentBootScreen extends HTMLElement { connectedCallback() { this.innerHTML = ``;}});{{ end }}