+
Karso (SSO)
+
+ Generic interface for login of Kar environment (SSO)
+
+
+
diff --git a/front/src/app/scene/help/help.less b/front/src/app/scene/help/help.less
new file mode 100644
index 0000000..7ea206b
--- /dev/null
+++ b/front/src/app/scene/help/help.less
@@ -0,0 +1,69 @@
+.title {
+ //background-color: green;
+ font-size: 45px;
+ font-weight: bold;
+ line-height: 60px;
+ width: 100%;
+ align: left;
+ text-align: center;
+ vertical-align: middle;
+ margin: 10px 0 10px 0;
+ text-shadow: 1px 1px 2px white, 0 0 1em white, 0 0 0.2em white;
+ text-transform: uppercase;
+ font-family: 'Roboto', 'Helvetica', 'Arial', sans-serif;
+}
+.item-home {
+ background-color: rgba(200, 200, 200, 0.5);
+ font-size: 20px;
+ height: 190px;
+ width: 200px;
+ margin: 5px;
+ padding: 0;
+ overflow: hidden;
+ // box-shadow: 0 1px 1.5px 0 rgba(0,0,0,.12),0 1px 1px 0 rgba(0,0,0,.24);
+ box-shadow: 0px 2px 4px 0 rgba(0, 0, 0, 0.6);
+ line-height: normal;
+ border: none;
+ font-family: 'Roboto', 'Helvetica', 'Arial', 'sans-serif';
+ font-weight: 500;
+ text-transform: uppercase;
+ letter-spacing: 0;
+ will-change: box-shadow;
+ outline: none;
+ cursor: pointer;
+ text-decoration: none;
+ text-align: center;
+ vertical-align: middle;
+ transition-duration: 0.4s;
+ float: left;
+ display: block;
+
+ h1 {
+ font-size: 24px;
+ }
+
+ &:hover {
+ background-color: rgba(200, 200, 200, 1);
+ //box-shadow: 0px 2px 4px 0 rgba(255, 0, 0, 0.6);
+ }
+
+ .material-icons {
+ vertical-align: middle;
+ }
+
+ .material-icons {
+ position: absolute;
+ top: 50%;
+ left: 50%;
+ transform: ~'translate(-12px,-12px)';
+ line-height: 24px;
+ width: 24px;
+ }
+}
+
+@media all and (min-width: 1310px) {
+ .colomn_mutiple {
+ width: ~'calc(210px * 5)';
+ margin: auto;
+ }
+}
diff --git a/front/src/app/scene/help/help.ts b/front/src/app/scene/help/help.ts
new file mode 100644
index 0000000..eba1c10
--- /dev/null
+++ b/front/src/app/scene/help/help.ts
@@ -0,0 +1,33 @@
+/** @file
+ * @author Edouard DUPIN
+ * @copyright 2018, Edouard DUPIN, all right reserved
+ * @license PROPRIETARY (see license file)
+ */
+
+import { Component, OnInit } from '@angular/core';
+import { ActivatedRoute } from '@angular/router';
+
+@Component({
+ selector: 'app-help',
+ templateUrl: './help.html',
+ styleUrls: ['./help.less'],
+})
+export class HelpScene implements OnInit {
+ page = '';
+
+ constructor(private route: ActivatedRoute) {}
+
+ ngOnInit() {
+ const page = this.route.snapshot.paramMap.get('page');
+ if (page == null) {
+ this.page = undefined;
+ } else {
+ this.page = page;
+ }
+ console.error(`MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM`);
+ console.error(`get parameter update: ${this.page}`);
+ console.error(`MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM`);
+ }
+
+ onSelectType(_event: any, _idSelected: number): void {}
+}
diff --git a/front/src/app/scene/home-unregistered/home-unregistered.html b/front/src/app/scene/home-unregistered/home-unregistered.html
new file mode 100644
index 0000000..00df84e
--- /dev/null
+++ b/front/src/app/scene/home-unregistered/home-unregistered.html
@@ -0,0 +1,13 @@
+