{"version":3,"file":"2403.b3f3c0d0b3ed3ae6.js","sources":["./src/app/layouts/auth-layout/enable-account/enable-account.component.html","./src/app/layouts/auth-layout/enable-account/enable-account.component.ts","./src/app/layouts/auth-layout/forgotPassword/forgot-password.component.html","./src/app/layouts/auth-layout/forgotPassword/forgot-password.component.ts","./src/app/layouts/auth-layout/login/login.component.html","./src/app/layouts/auth-layout/login/login.component.ts","./src/app/layouts/auth-layout/logout/logout.component.ts","./src/app/layouts/auth-layout/on-boarding/meeting/meeting.component.ts","./src/app/layouts/auth-layout/on-boarding/meeting/meeting.component.html","./src/app/layouts/auth-layout/on-boarding/sign-up-form/sign-up-form.component.html","./src/app/layouts/auth-layout/on-boarding/sign-up-form/sign-up-form.component.ts","./src/app/layouts/auth-layout/on-boarding/success-modal/success-modal.component.ts","./src/app/layouts/auth-layout/on-boarding/success-modal/success-modal.component.html","./src/app/layouts/auth-layout/on-boarding/validation-code-key/validation-code-key.component.html","./src/app/layouts/auth-layout/on-boarding/validation-code-key/validation-code-key.component.ts","./src/app/layouts/auth-layout/reset-password/reset-password.component.html","./src/app/layouts/auth-layout/reset-password/reset-password.component.ts","./src/app/layouts/auth-layout/sign-up-v2/sign-up-v2.component.html","./src/app/layouts/auth-layout/sign-up-v2/sign-up-v2.component.ts","./src/app/layouts/auth-layout/sign-up-v3-email/sign-up-v3-email.component.html","./src/app/layouts/auth-layout/sign-up-v3-email/sign-up-v3-email.component.ts","./src/app/layouts/auth-layout/sign-up-v3-features/sign-up-v3-features.component.html","./src/app/layouts/auth-layout/sign-up-v3-features/sign-up-v3-features.component.ts","./src/app/layouts/auth-layout/sign-up-v3-infos/sign-up-v3-infos.component.html","./src/app/layouts/auth-layout/sign-up-v3-infos/sign-up-v3-infos.component.ts","./src/app/layouts/auth-layout/sign-up-v3/sign-up-v3.component.html","./src/app/layouts/auth-layout/sign-up-v3/sign-up-v3.component.ts","./node_modules/@ng-icons/heroicons/fesm2022/ng-icons-heroicons-solid.mjs","./src/app/layouts/auth-layout/auth-layout.routing.ts","./src/app/layouts/auth-layout/auth-layout.module.ts","./src/app/services/address.service.ts","./src/app/shared/helpers/password.helper.ts","./src/app/shared/helpers/tva_format.helpers.ts"],"sourceRoot":"webpack:///","sourcesContent":["
\n \n \"Logo\"\n \n \n
\n
\n
\n
\n
\n
\n Afin d'activer votre compte, merci de renseigner un mot de passe\n
\n
\n
\n \n\n
\n \n \n
\n
\n\n
\n
\n {{ error }}
\n
\n
\n
\n \n
\n \n
\n
\n
\n
\n
\n
\n","import { EvaService } from \"src/app/core/services\";\nimport { AuthenticationService } from \"src/app/services/authentication.service\";\nimport { UserService } from \"src/app/services/user.service\";\n\nimport { Component, OnInit } from \"@angular/core\";\nimport { ActivatedRoute, Router } from \"@angular/router\";\nimport { getPasswordErrors } from \"src/app/shared/helpers/password.helper\";\n\n@Component({\n selector: \"app-enable-account\",\n templateUrl: \"./enable-account.component.html\",\n styleUrls: [\"./enable-account.component.scss\"],\n})\nexport class EnableAccountComponent implements OnInit {\n public password = \"\";\n private enable_code: string;\n public error = \"\";\n private sub: any;\n\n showPassword: boolean = false;\n\n public backgroundSvgs = [];\n\n private svgFiles = [\n {\n src: \"assets/svg/crane.svg\",\n width: 509.95,\n height: 568.56,\n top: \"33%\",\n left: \"-2%\",\n transform: \"rotate(-15deg)\",\n },\n { src: \"assets/svg/brick.svg\", width: 174, height: 227, top: \"-7%\", left: \"4%\", transform: \"rotate(-15deg)\" },\n {\n src: \"assets/svg/drill.svg\",\n width: 174.803,\n height: 125.5,\n top: \"10%\",\n left: \"33%\",\n transform: \"rotate(-20deg)\",\n },\n {\n src: \"assets/svg/excavator.svg\",\n width: 335.649,\n height: 220,\n top: \"73%\",\n left: \"58%\",\n transform: \"rotate(-15deg)\",\n },\n {\n src: \"assets/svg/grinder.svg\",\n width: 150.634,\n height: 141.442,\n top: \"70%\",\n left: \"28%\",\n transform: \"rotate(-15deg)\",\n },\n { src: \"assets/svg/mesure.svg\", width: 135.5, height: 214.5, top: \"37%\", left: \"76%\", transform: \"rotate(-19deg)\" },\n {\n src: \"assets/svg/plan.svg\",\n width: 157.088,\n height: 144.333,\n top: \"-5%\",\n left: \"59%\",\n transform: \"rotate(-20deg)\",\n },\n {\n src: \"assets/svg/scale.svg\",\n width: 163.001,\n height: 139.627,\n top: \"-3%\",\n left: \"82%\",\n transform: \"rotate(-22deg)\",\n },\n {\n src: \"assets/svg/vector.svg\",\n width: 103.361,\n height: 122.242,\n top: \"64%\",\n left: \"94%\",\n transform: \"rotate(-15deg)\",\n },\n ];\n\n formErrors: string[] = [];\n get hasErrors(): boolean {\n return this.formErrors.length > 0;\n }\n\n constructor(\n private route: ActivatedRoute,\n private router: Router,\n private userService: UserService,\n private authenticationService: AuthenticationService,\n private evaService: EvaService,\n ) {}\n\n ngOnInit() {\n this.sub = this.route.params.subscribe((params) => {\n this.enable_code = params[\"enable_code\"];\n });\n\n // Initialize the background SVGs\n this.backgroundSvgs = this.svgFiles;\n }\n\n enableAccount() {\n this.formErrors = getPasswordErrors(this.password); // Updated this line\n if (this.hasErrors) return;\n this.userService\n .enableAccount({\n password: this.password,\n k: this.enable_code,\n })\n .subscribe(\n (success) => {\n this.evaService.showSuccess(\"Compte activé avec succès ! Vous pouvez désormais vous connecter !\");\n this.router.navigate([\"/\"]);\n this.authenticationService.logout();\n },\n (error) => {\n if (error.error_type === \"TOKEN_EXPIRED\") {\n this.evaService.showError(\n \"Désolé, le mail d'activation est expiré. Vous pouvez faire 'Mot de passe oublié' à partir de la page d'accueil de l'appication pour activer votre compte\",\n \"enableAccount\",\n error,\n );\n } else {\n this.evaService.showError(\n \"Désolé, une erreur est survenue lors de l'activation de votre compte.\",\n \"enableAccount\",\n error,\n );\n }\n },\n );\n }\n}\n","
\n \n \"Logo\"\n \n \"Background\n
\n
\n

Mot de passe oublié ?

\n

Réinitialisation du mot de passe

\n
\n
\n
\n
\n \n \n \n \n \n \n \n \n L'email est requis\n \n
\n
\n \n
\n
\n \n {{ error }}\n
\n
\n \n
\n
\n
\n
\n
\n","import { EvaService } from \"src/app/core/services\";\nimport { UserService } from \"src/app/services/user.service\";\nimport { Component } from \"@angular/core\";\nimport { Router } from \"@angular/router\";\n\n@Component({\n selector: \"app-forgot-password\",\n templateUrl: \"./forgot-password.component.html\",\n styleUrls: [\"./forgot-password.component.scss\"],\n})\nexport class ForgotPasswordComponent {\n public email: string;\n public loading = false;\n public submitted = false;\n error = '';\n\n public backgroundSvgs = [];\n\n private svgFiles = [\n { src: 'assets/svg/crane.svg', width: 509.95, height: 568.56, top: '33%', left: '-2%', transform: 'rotate(-15deg)' },\n { src: 'assets/svg/brick.svg', width: 174, height: 227, top: '-7%', left: '4%', transform: 'rotate(-15deg)' },\n { src: 'assets/svg/drill.svg', width: 174.803, height: 125.5, top: '10%', left: '33%', transform: 'rotate(-20deg)' },\n { src: 'assets/svg/excavator.svg', width: 335.649, height: 220, top: '73%', left: '58%', transform: 'rotate(-15deg)' },\n { src: 'assets/svg/grinder.svg', width: 150.634, height: 141.442, top: '70%', left: '28%', transform: 'rotate(-15deg)' },\n { src: 'assets/svg/mesure.svg', width: 135.5, height: 214.5, top: '37%', left: '76%', transform: 'rotate(-19deg)' },\n { src: 'assets/svg/plan.svg', width: 157.088, height: 144.333, top: '-5%', left: '59%', transform: 'rotate(-20deg)' },\n { src: 'assets/svg/scale.svg', width: 163.001, height: 139.627, top: '-3%', left: '82%', transform: 'rotate(-22deg)' },\n { src: 'assets/svg/vector.svg', width: 103.361, height: 122.242, top: '64%', left: '94%', transform: 'rotate(-15deg)' },\n ];\n\n constructor(private router: Router, private evaService: EvaService, private userService: UserService) {\n // Initialize the background SVGs\n this.backgroundSvgs = this.svgFiles;\n }\n\n ask_reset_password() {\n this.submitted = true;\n this.error = '';\n\n if (!this.email) {\n this.error = \"Vous devez renseigner votre email!\";\n return;\n }\n\n this.loading = true;\n this.userService.askResetPassword({ email: this.email }).subscribe(\n (success) => {\n this.evaService.showSuccess(\n \"Demande effectuée avec succès. Veuillez désormais cliquer sur le lien envoyé par mail.\"\n );\n this.router.navigateByUrl(\"/\");\n this.loading = false;\n },\n (error) => {\n this.evaService.showError(\n \"Désolé, une erreur est survenue lors de votre demande de réinitialisation de mot de passe.\",\n \"ask_reset_password\",\n error\n );\n this.loading = false;\n }\n );\n }\n}\n","
\n \n \"Logo\"\n \n
\n \n
\n\n
\n
\n

Content de vous revoir !

\n

Connectez-vous

\n
\n
\n
\n
\n
\n \n \n \n \n \n \n \n \n
L'email est requis
\n
\n
\n
\n \n \n \n \n \n \n \n \n \n \n \n
Le mot de passe est requis
\n
\n
\n \n
\n \n
\n
\n \n {{ error }}\n
\n
\n
\n Pas encore de compte ?\n \n
\n
\n
\n
\n
\n
\n
\n","import { DeviceDetectorService } from \"ngx-device-detector\";\nimport { EvaService } from \"src/app/core\";\nimport { EvaCompanyService } from \"src/app/features/eva-company/services/evaCompany.service\";\nimport { EvaLayoutService } from \"src/app/layout/eva-layout.service\";\nimport { AppStateService } from \"src/app/services/app-state.service\";\nimport { AuthenticationService } from \"src/app/services/authentication.service\";\n\nimport { Component, OnInit } from \"@angular/core\";\nimport {\n UntypedFormBuilder,\n UntypedFormGroup,\n Validators\n} from \"@angular/forms\";\nimport { ActivatedRoute, Router } from \"@angular/router\";\n\n@Component({\n selector: \"app-login\",\n templateUrl: \"./login.component.html\",\n styleUrls: [\"./login.component.scss\"],\n})\nexport class LoginComponent implements OnInit {\n public loginForm: UntypedFormGroup;\n public loading = false;\n public submitted = false;\n public returnUrl: string;\n public error = \"\";\n public showPassword = false;\n\n public backgroundSvgs = [];\n\n private svgFiles = [\n {\n src: \"assets/svg/crane.svg\",\n width: 509.95,\n height: 568.56,\n top: \"33%\",\n left: \"-2%\",\n transform: \"rotate(-15deg)\",\n },\n { src: \"assets/svg/brick.svg\", width: 174, height: 227, top: \"-7%\", left: \"4%\", transform: \"rotate(-15deg)\" },\n {\n src: \"assets/svg/drill.svg\",\n width: 174.803,\n height: 125.5,\n top: \"10%\",\n left: \"33%\",\n transform: \"rotate(-20deg)\",\n },\n {\n src: \"assets/svg/excavator.svg\",\n width: 335.649,\n height: 220,\n top: \"73%\",\n left: \"58%\",\n transform: \"rotate(-15deg)\",\n },\n {\n src: \"assets/svg/grinder.svg\",\n width: 150.634,\n height: 141.442,\n top: \"70%\",\n left: \"28%\",\n transform: \"rotate(-15deg)\",\n },\n { src: \"assets/svg/mesure.svg\", width: 135.5, height: 214.5, top: \"37%\", left: \"76%\", transform: \"rotate(-19deg)\" },\n {\n src: \"assets/svg/plan.svg\",\n width: 157.088,\n height: 144.333,\n top: \"-5%\",\n left: \"59%\",\n transform: \"rotate(-20deg)\",\n },\n {\n src: \"assets/svg/scale.svg\",\n width: 163.001,\n height: 139.627,\n top: \"-3%\",\n left: \"82%\",\n transform: \"rotate(-22deg)\",\n },\n {\n src: \"assets/svg/vector.svg\",\n width: 103.361,\n height: 122.242,\n top: \"64%\",\n left: \"94%\",\n transform: \"rotate(-15deg)\",\n },\n ];\n public loadingReset = false; // New loading indicator for reset process\n deviceInfo = null;\n isMobile: boolean = false;\n displayPopup = true;\n passwordExpiredMessage = \"\";\n\n constructor(\n private formBuilder: UntypedFormBuilder,\n private route: ActivatedRoute,\n private router: Router,\n private authenticationService: AuthenticationService,\n private deviceService: DeviceDetectorService,\n private evaService: EvaService,\n private appStateService: AppStateService,\n private evaLayoutService: EvaLayoutService,\n ) {}\n\n ngOnInit() {\n if (this.authenticationService.currentUserValue) {\n this.router.navigate([\"/home\"]);\n }\n\n this.loginForm = this.formBuilder.group({\n username: [\"\", Validators.required],\n password: [\"\", Validators.required],\n });\n\n this.deviceInfo = this.deviceService.getDeviceInfo();\n this.isMobile = this.deviceService.isMobile();\n\n // get return url from route parameters or default to '/'\n this.returnUrl = this.route.snapshot.queryParams[\"returnUrl\"] || \"/\";\n\n // Initialize the background SVGs\n this.backgroundSvgs = this.svgFiles;\n\n if (localStorage.getItem(\"LOGOUT_PASSWORD_EXPIRED\") === \"true\") {\n this.evaService.clearErrors();\n this.passwordExpiredMessage = \"Votre mot de passe a expiré, veuillez le réinitialiser.\";\n }\n\n this.appStateService.passwordExpired$.subscribe((expired) => {\n if (expired) {\n this.evaService.clearErrors();\n this.passwordExpiredMessage = \"Votre mot de passe a expiré, veuillez le réinitialiser.\";\n }\n });\n\n this.evaLayoutService.isMobile$.subscribe((isMobile) => {\n this.isMobile = isMobile;\n });\n }\n\n // convenience getter for easy access to form fields\n get f() {\n return this.loginForm.controls;\n }\n\n openAppLink() {\n const lienIphone = \"https://apps.apple.com/fr/app/eva-gestion-pme/id6450710742\";\n const lienAndroid = \"https://play.google.com/store/apps/details?id=io.eva.mobile\";\n\n if (this.deviceInfo.device === \"iPhone\") {\n window.open(lienIphone, \"_blank\");\n } else if (this.deviceInfo.device === \"Android\") {\n window.open(lienAndroid, \"_blank\");\n }\n }\n\n onSubmit() {\n if (this.passwordExpiredMessage) {\n this.requestPasswordReset();\n return;\n }\n this.submitted = true;\n\n // stop here if form is invalid\n if (this.loginForm.invalid) {\n return;\n }\n this.loading = true;\n this.authenticationService.login(this.f.username.value, this.f.password.value).subscribe({\n next: (response) => {\n if (response.status === \"otp_sent\") {\n this.router.navigate([\"/validation-code\"], {\n queryParams: { email: this.f.username.value, context: \"login\" },\n });\n } else {\n console.error(\"Unexpected response received:\", response);\n }\n this.loading = false;\n },\n error: (error) => {\n this.error =\n \"Erreur lors de la connexion, êtes-vous sûr de votre identifiant et votre mot de passe ? Si vous ne parvenez toujours pas à vous connecter, vous pouvez utiliser le lien 'Mot de passe oublié' ci-dessus.\";\n this.loading = false;\n },\n });\n }\n\n checkIfPasswordExpired() {\n this.appStateService.passwordExpired$.subscribe((expired) => {\n if (expired) {\n this.passwordExpiredMessage = \"Votre mot de passe a expiré, veuillez le réinitialiser.\";\n }\n });\n }\n\n requestPasswordReset() {\n console.log(\"Request Password Reset called\");\n const email = this.loginForm.get(\"username\").value;\n if (email && !this.loadingReset) {\n this.loadingReset = true; // Start loading for reset\n this.authenticationService.requestPasswordReset(email).subscribe({\n next: () => {\n this.passwordExpiredMessage =\n \"Votre mot de passe a expiré. Nous avons envoyé un lien à votre adresse email pour le réinitialiser. Veuillez vérifier votre boîte de réception et suivre les instructions pour réinitialiser votre mot de passe\";\n this.loadingReset = false; // Stop loading on success\n },\n error: (error) => {\n this.error =\n \"Nous n'avons pas pu trouver de compte associé à cette adresse email. Veuillez vérifier l'adresse email saisie et réessayer\";\n this.loadingReset = false; // Stop loading on error\n },\n });\n }\n }\n\n onAskNewAccount() {\n this.router.navigate([\"/v2/sign-up\"]);\n }\n\n toggleShowPassword() {\n this.showPassword = !this.showPassword;\n const passwordField: any = document.getElementById(\"password\");\n passwordField.type = this.showPassword ? \"text\" : \"password\";\n }\n}\n","import { firstValueFrom } from \"rxjs\";\nimport { DbService } from \"src/app/core/services/db.service\";\n\nimport { Component, OnInit } from \"@angular/core\";\nimport { Router } from \"@angular/router\";\n\n@Component({\n selector: \"app-logout\",\n templateUrl: \"./logout.component.html\",\n styleUrls: [\"./logout.component.scss\"],\n})\nexport class LogoutComponent implements OnInit {\n constructor(\n private router: Router,\n private dbService: DbService,\n ) {}\n\n ngOnInit(): void {\n this.logout();\n }\n\n async logout() {\n try {\n // Suppression des données du stockage local\n localStorage.clear();\n sessionStorage.clear();\n\n // Suppression des données IndexedDB\n await firstValueFrom(this.dbService.clearAll());\n } catch (error) {\n console.error(\"Error during logout\", error);\n }\n\n // Redirection vers la page d'accueil et rechargement\n this.router.navigate([\"/\"]).then(() => {\n window.location.reload();\n });\n }\n}\n","import { Component, OnInit } from \"@angular/core\";\nimport { DomSanitizer, SafeResourceUrl } from \"@angular/platform-browser\";\nimport { EvaService } from \"src/app/core\";\nimport { User } from \"src/app/domains/user\";\nimport { UserService } from \"src/app/services/user.service\";\n\n@Component({\n selector: \"app-meeting\",\n templateUrl: \"./meeting.component.html\",\n styleUrls: [\"./meeting.component.scss\"],\n})\nexport class MeetingComponent implements OnInit {\n user: User = null;\n url: SafeResourceUrl = null;\n\n constructor(\n private userService: UserService,\n private evaService: EvaService,\n private sanitizer: DomSanitizer\n ) {}\n\n ngOnInit(): void {\n this.getUser();\n }\n\n getUser() {\n this.userService.get().subscribe({\n next: (user) => {\n this.user = user;\n this.url = this.getSafeIframeSrc(user);\n },\n error: (err) =>\n this.evaService.showError(\n \"Une erreur est survenue lors de la récupération de l'utilisateur\",\n \"getUser\",\n err\n ),\n });\n }\n\n getSafeIframeSrc(user: User): SafeResourceUrl {\n if (user) {\n const baseUrl =\n \"https://contact.eva-it.ch/meetings/franck-lauer/configuration-de-eva\";\n const firstName = encodeURIComponent(user.first_name);\n const lastName = encodeURIComponent(user.last_name);\n const email = encodeURIComponent(user.user_id);\n const url = `${baseUrl}?firstName=${firstName}&lastName=${lastName}&email=${email}`;\n return this.sanitizer.bypassSecurityTrustResourceUrl(url);\n }\n }\n}\n","
\n
\n
\n \"Logo\"\n

\n Une dernière étape est nécessaire avant d'activer votre compte. Veuillez prendre rendez-vous avec notre expert\n pour finaliser la création de votre espace.\n

\n
\n
\n \n
\n
\n Vous pouvez également prendre rendez-vous par email en envoyant un message à\n support@eva-it.ch\n
\n
\n
\n","
\n \n \"Logo\"\n \n \n
\n
\n

Bienvenue !

\n

Inscription

\n
\n
\n
\n
\n \n \n \n \n \n
\n
\n \n \n \n \n \n
\n
\n \n
\n \n 0 }\"\n />\n \n \n \n \n \n
\n
\n
\n \n
\n \n 0 }\"\n />\n \n \n \n \n
\n
\n 0\" class=\"p-error pb-3\">\n
\n {{ error }}
\n
\n
\n
\n \n
\n
\n \n
\n
\n \n {{ error }}\n
\n
\n \n Vous rencontrez des difficultés pour vous inscrire ? Envoyez un mail à l'adresse suivante:\n support@eva-it.ch\n \n
\n \n
\n
\n
\n","import { Component, EventEmitter, Input, Output } from \"@angular/core\";\nimport { Router } from \"@angular/router\";\nimport { EvaService } from \"src/app/core\";\nimport { User } from \"src/app/domains\";\nimport { AuthenticationService } from \"src/app/services/authentication.service\";\nimport { getPasswordErrors } from \"src/app/shared/helpers/password.helper\";\n\n@Component({\n selector: \"app-sign-up-form\",\n templateUrl: \"./sign-up-form.component.html\",\n styleUrls: [\"./sign-up-form.component.scss\"],\n})\nexport class SignUpFormComponent {\n @Input() user: User = new User();\n @Output() errorsDetected = new EventEmitter();\n loading = false;\n formErrors: string[] = [];\n passwordConfimation: string;\n isExpired: boolean = false;\n isUserExist: boolean = false;\n showPassword: boolean = false;\n showConfirmationPassword: boolean = false;\n submitted: boolean = false;\n error: string = '';\n\n get hasErrors(): boolean {\n return this.formErrors.length > 0;\n }\n\n public backgroundSvgs = [];\n\n private svgFiles = [\n { src: 'assets/svg/crane.svg', width: 509.95, height: 568.56, top: '33%', left: '-2%', transform: 'rotate(-15deg)' },\n { src: 'assets/svg/brick.svg', width: 174, height: 227, top: '-7%', left: '4%', transform: 'rotate(-15deg)' },\n { src: 'assets/svg/drill.svg', width: 174.803, height: 125.5, top: '10%', left: '33%', transform: 'rotate(-20deg)' },\n { src: 'assets/svg/excavator.svg', width: 335.649, height: 220, top: '73%', left: '58%', transform: 'rotate(-15deg)' },\n { src: 'assets/svg/grinder.svg', width: 150.634, height: 141.442, top: '70%', left: '28%', transform: 'rotate(-15deg)' },\n { src: 'assets/svg/mesure.svg', width: 135.5, height: 214.5, top: '37%', left: '76%', transform: 'rotate(-19deg)' },\n { src: 'assets/svg/plan.svg', width: 157.088, height: 144.333, top: '-5%', left: '59%', transform: 'rotate(-20deg)' },\n { src: 'assets/svg/scale.svg', width: 163.001, height: 139.627, top: '-3%', left: '82%', transform: 'rotate(-22deg)' },\n { src: 'assets/svg/vector.svg', width: 103.361, height: 122.242, top: '64%', left: '94%', transform: 'rotate(-15deg)' },\n ];\n\n constructor(\n private authenticationService: AuthenticationService,\n private evaService: EvaService,\n private router: Router\n ) {}\n\n ngOnInit() {\n // Initialize the background SVGs\n this.backgroundSvgs = this.svgFiles;\n }\n\n getFormErrors(): string[] {\n let errors = [];\n\n if (!this.user.first_name || this.user.first_name.trim() === \"\") {\n errors.push(\"Vous devez renseigner votre prénom.\");\n }\n if (!this.user.last_name || this.user.last_name.trim() === \"\") {\n errors.push(\"Vous devez renseigner votre nom.\");\n }\n if (this.user.password !== this.passwordConfimation) {\n errors.push(\"Les mots de passe saisis sont différents.\");\n }\n if (this.user.password && this.user.password.trim() !== \"\") {\n errors = errors.concat(getPasswordErrors(this.user.password));\n }\n\n return errors;\n }\n\n onSubmit() {\n this.submitted = true;\n this.formErrors = this.getFormErrors();\n\n if (this.hasErrors) return;\n\n this.loading = true;\n\n this.authenticationService.createUser(this.user).subscribe({\n next: (user) => {\n this.loading = false;\n this.router.navigateByUrl(`create-company`);\n },\n error: (err) => {\n if (err.error_type === \"USER_ALREADY_EXIST\") {\n this.loading = false;\n this.isUserExist = true;\n this.evaService.showError(\n \"Désolé, l'utilisateur existe déjà. Cliquez sur 'Configurer votre entreprise' pour continuer l'inscription\",\n \"onSubmit\",\n err\n );\n } else {\n this.loading = false;\n this.evaService.showError(\n \"Une erreur est survenue lors de la création du nouvel utilisateur\",\n \"onSubmit\",\n err\n );\n }\n },\n });\n }\n\n goToCompanySettings() {\n this.router.navigateByUrl(`create-company`);\n }\n}\n","import { Component } from \"@angular/core\";\nimport { Router } from \"@angular/router\";\n\n@Component({\n selector: \"app-success-modal\",\n templateUrl: \"./success-modal.component.html\",\n styleUrls: [\"./success-modal.component.scss\"],\n})\nexport class SuccessModalComponent {\n constructor(private router: Router) {}\n\n returnToLogin() {\n this.router.navigateByUrl(`login`);\n }\n}\n","
\n
\n
\n
\n \n
\n
\n
\n

Rendez-vous enregistré !

\n

\n Merci d’avoir créé votre espace sur EVA. Ce dernier vous sera accessible dès que vous aurez terminé le\n rendez-vous de configuration avec notre Expert.\n

\n \n
\n
\n
\n","
\n \n \"Logo\"\n \n \n
\n
\n

Content de vous revoir !

\n

Entrez le code que vous venez de recevoir à l'adresse {{ mail }}

\n
\n
\n
\n
\n \n \n \n \n \n \n Le code de validation est requis \n
\n
\n \n
\n
\n \n {{ error }}\n
\n
\n Vous ne trouvez pas votre code ? Vérifiez vos courriers indésirables !\n
\n
\n \n
\n
\n Vous rencontrez des difficultés ? Envoyez un mail à\n support@eva-it.ch\n
\n
\n
\n
\n
\n","import { EvaService } from \"src/app/core\";\nimport { EvaCompanyService } from \"src/app/features/eva-company/services/evaCompany.service\";\nimport { AuthenticationService } from \"src/app/services/authentication.service\";\n\nimport { Component, OnInit } from \"@angular/core\";\nimport { ActivatedRoute, Router } from \"@angular/router\";\n\n@Component({\n selector: \"app-validation-code-key\",\n templateUrl: \"./validation-code-key.component.html\",\n styleUrls: [\"./validation-code-key.component.scss\"],\n})\nexport class ValidationCodeKeyComponent implements OnInit {\n public loading = false;\n public isExpired = false;\n public mail: string;\n public validationCode: string = \"\";\n public context: \"login\" | \"register\" = \"register\";\n public submitted = false;\n public error = \"\";\n\n public backgroundSvgs = [];\n\n private svgFiles = [\n {\n src: \"assets/svg/crane.svg\",\n width: 509.95,\n height: 568.56,\n top: \"33%\",\n left: \"-2%\",\n transform: \"rotate(-15deg)\",\n },\n { src: \"assets/svg/brick.svg\", width: 174, height: 227, top: \"-7%\", left: \"4%\", transform: \"rotate(-15deg)\" },\n {\n src: \"assets/svg/drill.svg\",\n width: 174.803,\n height: 125.5,\n top: \"10%\",\n left: \"33%\",\n transform: \"rotate(-20deg)\",\n },\n {\n src: \"assets/svg/excavator.svg\",\n width: 335.649,\n height: 220,\n top: \"73%\",\n left: \"58%\",\n transform: \"rotate(-15deg)\",\n },\n {\n src: \"assets/svg/grinder.svg\",\n width: 150.634,\n height: 141.442,\n top: \"70%\",\n left: \"28%\",\n transform: \"rotate(-15deg)\",\n },\n { src: \"assets/svg/mesure.svg\", width: 135.5, height: 214.5, top: \"37%\", left: \"76%\", transform: \"rotate(-19deg)\" },\n {\n src: \"assets/svg/plan.svg\",\n width: 157.088,\n height: 144.333,\n top: \"-5%\",\n left: \"59%\",\n transform: \"rotate(-20deg)\",\n },\n {\n src: \"assets/svg/scale.svg\",\n width: 163.001,\n height: 139.627,\n top: \"-3%\",\n left: \"82%\",\n transform: \"rotate(-22deg)\",\n },\n {\n src: \"assets/svg/vector.svg\",\n width: 103.361,\n height: 122.242,\n top: \"64%\",\n left: \"94%\",\n transform: \"rotate(-15deg)\",\n },\n ];\n\n constructor(\n private authService: AuthenticationService,\n private evaService: EvaService,\n public evaCompanyService: EvaCompanyService,\n private router: Router,\n private route: ActivatedRoute,\n ) {}\n\n ngOnInit() {\n this.route.queryParams.subscribe((params) => {\n this.context = params[\"context\"] || \"register\";\n if (params[\"email\"]) {\n this.mail = params[\"email\"];\n } else {\n this.mail = this.authService.getUserMail();\n }\n });\n\n // Initialize the background SVGs\n this.backgroundSvgs = this.svgFiles;\n }\n\n async onSubmit() {\n this.submitted = true;\n\n if (this.validationCode.trim() === \"\") {\n return;\n }\n\n this.loading = true;\n let validationObservable;\n\n if (this.context === \"login\") {\n validationObservable = this.authService.validateLoginOtp(this.mail, this.validationCode.trim());\n console.log(\"login\");\n } else {\n validationObservable = this.authService.validateToken(this.mail, this.validationCode.trim());\n console.log(\"register\");\n }\n\n try {\n await validationObservable.toPromise(); // Valider l'OTP ou le Token\n await this.evaCompanyService.load(); // Charger les entreprises accessibles et pre-set the first one and get employee\n this.handleSuccess();\n } catch (error) {\n this.handleErrors(error);\n } finally {\n this.loading = false;\n }\n }\n\n handleSuccess() {\n if (this.context === \"login\") {\n this.router.navigateByUrl(\"/\"); // Navigate to dashboard after login\n } else {\n this.router.navigateByUrl(\"/register-user\"); // Post-registration flow\n }\n this.loading = false; // Ensure loading is set to false on success as well\n }\n\n handleErrors(error: any) {\n this.loading = false;\n if (error.error_type === \"TOKEN_INVALID\") {\n this.error = \"Le code renseigné est erroné\";\n } else if (error.error_type === \"EXPIRED\") {\n this.isExpired = true;\n this.error = \"Le code de validation a expiré. Veuillez renvoyer un code de validation\";\n } else if (error.error_type === \"PASSWORD_EXPIRED\") {\n this.authService.logout(\"passwordExpired\");\n this.router.navigate([\"/login\"]);\n } else {\n this.error = \"Désolé, une erreur est survenue lors de l'enregistrement du code de validation\";\n }\n }\n\n sendBackEmailToken() {\n this.submitted = false;\n this.authService.reSEndValidationCode(this.mail).subscribe({\n next: () => {\n this.isExpired = false;\n this.loading = false;\n this.evaService.showSuccess(\"Le code de validation a été renvoyé par mail avec succès\");\n },\n error: (error) => {\n this.error = \"Erreur lors de l'envoi du code de validation\";\n this.loading = false;\n },\n });\n }\n}\n","
\n \n \"Logo\"\n \n \"Background\n
\n
\n

Réinitialisation de mot de passe

\n

Nouveau mot de passe

\n
\n
\n
\n
\n \n \n \n 0 }\"\n />\n \n \n \n \n \n
\n 0\" class=\"p-error\">\n
\n {{ error }}
\n
\n
\n
\n \n
\n
\n \n {{ error }}\n
\n
\n
\n
\n
\n","import { EvaService } from \"src/app/core/services\";\nimport { AuthenticationService } from \"src/app/services/authentication.service\";\nimport { UserService } from \"src/app/services/user.service\";\nimport { getPasswordErrors } from \"src/app/shared/helpers/password.helper\";\n\nimport { Component, OnInit } from \"@angular/core\";\nimport { ActivatedRoute, Router } from \"@angular/router\";\n\n@Component({\n selector: \"app-reset-password\",\n templateUrl: \"./reset-password.component.html\",\n styleUrls: [\"./reset-password.component.scss\"],\n})\nexport class ResetPasswordComponent implements OnInit {\n public password = \"\";\n private enable_code: string;\n showPassword: boolean = false;\n formErrors: string[] = [];\n public submitted = false;\n public loading = false;\n public error = \"\";\n\n get hasErrors(): boolean {\n return this.formErrors.length > 0;\n }\n\n public backgroundSvgs = [];\n\n private svgFiles = [\n {\n src: \"assets/svg/crane.svg\",\n width: 509.95,\n height: 568.56,\n top: \"33%\",\n left: \"-2%\",\n transform: \"rotate(-15deg)\",\n },\n { src: \"assets/svg/brick.svg\", width: 174, height: 227, top: \"-7%\", left: \"4%\", transform: \"rotate(-15deg)\" },\n {\n src: \"assets/svg/drill.svg\",\n width: 174.803,\n height: 125.5,\n top: \"10%\",\n left: \"33%\",\n transform: \"rotate(-20deg)\",\n },\n {\n src: \"assets/svg/excavator.svg\",\n width: 335.649,\n height: 220,\n top: \"73%\",\n left: \"58%\",\n transform: \"rotate(-15deg)\",\n },\n {\n src: \"assets/svg/grinder.svg\",\n width: 150.634,\n height: 141.442,\n top: \"70%\",\n left: \"28%\",\n transform: \"rotate(-15deg)\",\n },\n { src: \"assets/svg/mesure.svg\", width: 135.5, height: 214.5, top: \"37%\", left: \"76%\", transform: \"rotate(-19deg)\" },\n {\n src: \"assets/svg/plan.svg\",\n width: 157.088,\n height: 144.333,\n top: \"-5%\",\n left: \"59%\",\n transform: \"rotate(-20deg)\",\n },\n {\n src: \"assets/svg/scale.svg\",\n width: 163.001,\n height: 139.627,\n top: \"-3%\",\n left: \"82%\",\n transform: \"rotate(-22deg)\",\n },\n {\n src: \"assets/svg/vector.svg\",\n width: 103.361,\n height: 122.242,\n top: \"64%\",\n left: \"94%\",\n transform: \"rotate(-15deg)\",\n },\n ];\n\n constructor(\n private route: ActivatedRoute,\n private router: Router,\n private userService: UserService,\n private authenticationService: AuthenticationService,\n private evaService: EvaService,\n ) {}\n\n ngOnInit() {\n this.route.params.subscribe((params) => {\n this.enable_code = params[\"reset_code\"];\n });\n\n // Initialize the background SVGs\n this.backgroundSvgs = this.svgFiles;\n }\n\n resetPassword() {\n this.submitted = true;\n this.formErrors = getPasswordErrors(this.password);\n\n if (this.hasErrors) return;\n\n this.loading = true;\n this.userService\n .enableAccount({\n password: this.password,\n k: this.enable_code,\n })\n .subscribe(\n (success) => {\n this.evaService.showSuccess(\"Mot de passe réinitialisé avec succès ! Vous pouvez désormais vous connecter !\");\n this.authenticationService.logout();\n this.router.navigate([\"/login\"]);\n this.authenticationService.logout();\n this.loading = false;\n },\n (error) => {\n this.evaService.showError(\n \"Désolé, une erreur est survenue lors de la réinitialisation de votre mot de passe.\",\n \"resetPassword\",\n error,\n );\n this.loading = false;\n },\n );\n }\n}\n","
\n \n
\n \n

Essai 100% gratuit - Sans engagement - Sans carte bancaire

\n\n

Une question ? Un problème technique ? Contactez-nous par email à support@eva-it.ch

\n
\n\n \n
\n
\n \"logo\"\n
\n
\n

\n {{ selectedFormula.name }}\n {{ selectedFormula.badge }}\n

\n
\n
\n

\n Vous avez opté pour l'offre {{ selectedFormula.name }}, renseignez quelques informations et testez gratuitement le logiciel\n

\n \n
\n\n
\n
\n \n \n
Prénom est requis
\n
\n
\n \n \n
Nom est requis
\n
\n
\n\n
\n
\n \n \n
Nom de société requis
\n
\n
\n\n
\n
\n \n \n
Email invalide
\n
\n
\n\n
\n
\n \n \n
\n Mot de passe doit contenir au moins 8 caractères, une majuscule, un chiffre et un caractère spécial\n
\n
\n
\n\n
\n En cliquant sur Démarrer ma version d'essai, vous reconnaissez avoir lu et accepté\n nos conditions générales d’utilisation\n
\n\n
\n \n \n
\n\n
{{ globalError }}
\n\n

Une question ? Un problème technique ? Contactez-nous par email à support@eva-it.ch

\n
\n\n \n
\n

Merci de renseigner le code envoyé par email

\n\n
\n
\n \n \n
Code de validation obligatoire
\n
\n
\n\n
\n \n \n
\n\n
{{ globalError }}
\n\n

Une question ? Un problème technique ? Contactez-nous par email à support@eva-it.ch

\n
\n
\n","import { ButtonModule } from \"primeng/button\";\nimport { InputTextModule } from \"primeng/inputtext\";\nimport { EvaCompanyService } from \"src/app/features/eva-company/services/evaCompany.service\";\nimport { Formula } from \"src/app/features/formula/models/formula.model\";\nimport { EvaSubscriptionService } from \"src/app/features/subscription/eva-subscription.service\";\nimport { AuthenticationService } from \"src/app/services/authentication.service\";\nimport { getPasswordErrors } from \"src/app/shared/helpers/password.helper\";\nimport { SharedModule } from \"src/app/shared/shared.module\";\n\nimport { CommonModule, Location } from \"@angular/common\";\nimport { Component, HostListener, OnDestroy, OnInit, Renderer2 } from \"@angular/core\";\nimport { FormsModule } from \"@angular/forms\";\nimport { ActivatedRoute } from \"@angular/router\";\nimport Clarity from \"@microsoft/clarity\";\n\n@Component({\n selector: \"app-sign-up-v2\",\n templateUrl: \"./sign-up-v2.component.html\",\n styleUrl: \"./sign-up-v2.component.scss\",\n imports: [CommonModule, FormsModule, InputTextModule, ButtonModule, SharedModule],\n standalone: true,\n})\nexport class SignUpV2Component implements OnInit, OnDestroy {\n first_name: string = \"\";\n last_name: string = \"\";\n company_name: string = \"\";\n email: string = \"\";\n password: string = \"\";\n validationCode: string = \"\";\n\n loading: boolean = false;\n submitted: boolean = false;\n\n globalError: string = \"\";\n\n selectedFormula: Formula | null = null;\n\n step = \"HOME\";\n\n steps = [\"HOME\", \"FORM\", \"VALIDATION_CODE\", \"SUCCESS\"];\n\n formulas = [\"FONDATION\", \"STRUCTURE\", \"ELEVATION\", \"INSTALLATION\"];\n\n selectedInterval = \"YEARLY\";\n\n get emailValid(): boolean {\n const emailPattern = /^[a-z0-9._%+-]+@[a-z0-9.-]+\\.[a-z]{2,4}$/;\n return emailPattern.test(this.email);\n }\n\n get passwordValid(): boolean {\n const errors = getPasswordErrors(this.password);\n return errors.length === 0;\n }\n\n constructor(\n private route: ActivatedRoute,\n private renderer: Renderer2,\n private authService: AuthenticationService,\n private evaCompanyService: EvaCompanyService,\n private evaSubscriptionService: EvaSubscriptionService,\n private location: Location,\n ) {\n this.route.queryParams.subscribe((params) => {\n if (params.formula && this.formulas.includes(params.formula)) {\n const formulaId = params.formula;\n if ([\"FONDATION\", \"STRUCTURE\", \"ELEVATION\"].includes(formulaId)) {\n this.step = \"FORM\";\n this.selectedFormula = this.evaSubscriptionService.getFormulaById(formulaId);\n } else {\n this.goBackToHome();\n }\n }\n if (params.payment_type && [\"MONTHLY\", \"YEARLY\", \"LIFETIME\"].includes(params.payment_type)) {\n this.selectedInterval = params.payment_type;\n } else {\n this.selectedInterval = \"YEARLY\";\n }\n });\n }\n\n ngOnInit() {\n Clarity.upgrade(\"sign-up\");\n }\n\n ngOnDestroy() {}\n\n @HostListener(\"window:popstate\", [\"$event\"])\n onPopState(event: PopStateEvent) {\n // Si on est à HOME, laisser le navigateur gérer le retour\n if (this.step === \"HOME\") {\n return;\n }\n\n // Sinon, empêcher la navigation en \"poussant\" une nouvelle entrée dans l'historique\n this.location.go(this.location.path()); // Force une nouvelle entrée identique dans l'historique\n\n // Retourner à l'étape HOME (ou autre action)\n this.goBackToHome();\n }\n\n checkFields() {\n return this.first_name && this.last_name && this.company_name && this.emailValid && this.passwordValid;\n }\n\n // Retour à \"HOME\" avec mise à jour des paramètres\n private goBackToHome() {\n this.step = \"HOME\";\n this.selectedFormula = null;\n this.updateUrlParams();\n }\n\n goBackToForm() {\n this.step = \"FORM\";\n }\n\n signUp() {\n this.submitted = true;\n this.globalError = \"\";\n if (!this.checkFields()) return;\n\n this.loading = true;\n\n let inputDto = {\n first_name: this.first_name,\n last_name: this.last_name,\n company_name: this.company_name,\n email: this.email,\n password: this.password,\n formula: this.selectedFormula.id,\n formula_type: this.selectedFormula.formulaType,\n interval: this.selectedInterval,\n };\n\n this.authService.askSignUp(inputDto).subscribe(\n (res) => {\n this.loading = false;\n this.submitted = false;\n this.step = \"VALIDATION_CODE\";\n },\n (err) => {\n if (err.error_type === \"EMAIL_ALREADY_EXIST\") {\n this.globalError =\n \"Un compte existe déjà avec cette adresse email, veuillez vous connecter ou réinitialiser votre mot de passe. Si vous avez des questions, veuillez nous envoyer un message à support@eva-it.ch\";\n } else {\n this.globalError =\n \"Impossible de créer votre compte, veuillez réessayer et si le problème persiste nous envoyer un message à support@eva-it.ch\";\n }\n this.loading = false;\n },\n );\n }\n\n validateCode() {\n this.submitted = true;\n this.globalError = \"\";\n if (!this.validationCode) return;\n\n this.loading = true;\n\n // validate token and get the accessToke, refreshToken, evaCompany and user\n this.authService.validateToken(this.email, this.validationCode).subscribe(\n async (res) => {\n this.loading = false;\n this.submitted = false;\n this.step = \"SUCCESS\";\n this.evaCompanyService.changeCompany(res.eva_company.eva_company_id, true, false);\n },\n (err) => {\n this.loading = false;\n if (err.error_type === \"INVALID_CODE\") {\n this.globalError = \"Le code de validation est incorrect\";\n } else {\n this.globalError =\n \"Impossible de valider votre compte, veuillez réessayer et si le problème persiste nous envoyer un message à support@eva-it.ch\";\n }\n },\n );\n }\n\n onFormulaSelected(formula: Formula) {\n if (formula.formulaType === \"EXPERT\") {\n window.open(\n \"https://contact.eva-it.ch/meetings/franck-lauer/visio-presentation-de-loffre-installation-de-eva\",\n \"_blank\",\n );\n return;\n }\n\n this.selectedFormula = formula;\n this.step = \"FORM\";\n\n // Mise à jour de l'URL\n this.updateUrlParams();\n }\n\n onIntervalSelected(interval: string) {\n this.selectedInterval = interval;\n\n // Mise à jour de l'URL\n this.updateUrlParams();\n }\n\n // Mise à jour des paramètres d’URL\n private updateUrlParams() {\n const params = new URLSearchParams();\n if (this.selectedFormula) {\n params.set(\"formula\", this.selectedFormula.id);\n }\n if (this.selectedInterval) {\n params.set(\"interval\", this.selectedInterval);\n }\n\n this.location.go(`/v2/sign-up?${params.toString()}`);\n }\n}\n","
\n
\n
\n \n
\n\n
\n \"logo\"\n

Testez EVA Gratuitement

\n

\n Nous vous offrons 15 jours gratuit sans limite, sans engagement et sans moyen\n de paiement requis\n

\n
\n
\n \n

{{ error }}

\n
\n
\n \n
\n
\n Envie de tester une autre formule ? Vous pourrez la changer à tout moment. Et pas d’inquiétude : si vous ne\n souhaitez pas continuer, votre essai se terminera automatiquement au bout des 15 jours, sans rien aucune action\n requise de votre part.\n
\n
\n
\n\n
\n \"eva\"\n
\n
\n","import { firstValueFrom } from \"rxjs\";\nimport { AuthenticationService } from \"src/app/services/authentication.service\";\n\nimport { Component, EventEmitter, Input, Output } from \"@angular/core\";\n\n@Component({\n selector: \"app-sign-up-v3-email\",\n templateUrl: \"./sign-up-v3-email.component.html\",\n styleUrl: \"./sign-up-v3-email.component.scss\",\n})\nexport class SignUpV3EmailComponent {\n @Input() email: string = \"\";\n error: string = \"\";\n loading: boolean = false;\n\n @Output() onGoBack = new EventEmitter();\n @Output() onNext = new EventEmitter();\n\n constructor(private authService: AuthenticationService) {}\n\n goBack() {\n this.onGoBack.emit();\n }\n\n validateEmail(email: string): boolean {\n const emailRegex = /^[^\\s@]+@[^\\s@]+\\.[^\\s@]+$/;\n return emailRegex.test(email);\n }\n\n async validate() {\n this.error = \"\";\n\n if (!this.validateEmail(this.email)) {\n this.error = \"Email invalide\";\n return;\n }\n\n this.loading = true;\n\n try {\n let emailStatus = await firstValueFrom(this.authService.checkEmail(this.email));\n this.loading = false;\n\n if (emailStatus?.status === \"NOT_EXIST\") {\n this.onNext.emit({ email: this.email });\n } else {\n this.error =\n \"Email déjà utilisé, veuillez vous connecter ou réessayer avec une autre adresse email. Si le problème persiste veuillez nous contacter par mail à support@eva-it.ch\";\n return;\n }\n } catch (error) {\n this.loading = false;\n this.error =\n \"Une erreur est survenue, veuillez réessayer. Si le problème persiste veuillez nous contacter par mail à support@eva-it.ch\";\n return;\n }\n }\n}\n","
\n
\n \n
\n\n
\n \"logo\"\n

Construisons un espace qui vous ressemble

\n

\n Paramétrons votre espace selon vos besoins pour une expérience sur mesure, pensée pour vous :\n sélectionnez les fonctions qui vous intéressent\n

\n\n
\n
\n \n Création et suivi facilité de vos offres et de vos factures\n Formule FONDATION\n
\n
\n \n Planification, facturation et suivi de vos chantiers\n Formule STRUCTURE\n
\n
\n \n Gestion des dépenses (bons de commande et factures d’achat)\n Formule ELEVATION\n
\n
\n\n
\n \n \n
\n
\n Envie de tester une autre formule ? Vous pourrez la changer à tout moment. Et pas d’inquiétude : si vous ne\n souhaitez pas continuer, votre essai se terminera automatiquement au bout des 15 jours, sans rien aucune action\n requise de votre part.\n
\n
\n\n
\n \"logo\"\n

Besoin de plus de fonctionnalités ?

\n

\n Vérifions ensemble si la formule Installation correspond à vos besoins.\n Elle propose de nombreuses fonctionnalités supplémentaires ainsi qu’un accès à plus d’utilisateurs.\n Voici un aperçu de ce qu’elle offre :\n

\n\n
\n
\n
\n \n \n \n
\n\n {{ feature }}\n
\n
\n\n Cela semble-t-il mieux correspondre à vos besoins ?\n\n
\n \n \n
\n
\n
\n","import { Component, EventEmitter, Input, Output } from \"@angular/core\";\n\n@Component({\n selector: \"app-sign-up-v3-features\",\n templateUrl: \"./sign-up-v3-features.component.html\",\n styleUrl: \"./sign-up-v3-features.component.scss\",\n})\nexport class SignUpV3FeaturesComponent {\n @Input() fondationChecked: boolean = false;\n @Input() structureChecked: boolean = false;\n @Input() elevationChecked: boolean = false;\n @Input() formula: string = \"\";\n\n lightMode: boolean = true;\n\n expertFeatures = [\n \"Offres\",\n \"Factures Clients\",\n \"Catalogue sur-mesure et IGH\",\n \"Factures d'achats\",\n \"Clients & Prospects\",\n \"Chantiers\",\n \"Statistiques et outils de suivi\",\n \"Banking\",\n \"Notes de frais\",\n \"App mobile pour les activités terrain\",\n \"Planning collaborateurs\",\n \"Gestion RH\",\n \"Contrats et Dépannages\",\n \"Nombre d'utilisateurs ajustable\",\n ];\n\n @Output() onGoBack = new EventEmitter();\n @Output() onNext = new EventEmitter();\n\n get isValid() {\n return this.fondationChecked || this.structureChecked || this.elevationChecked;\n }\n\n constructor() {}\n\n goBack() {\n if (!this.lightMode) {\n this.lightMode = true;\n } else {\n this.onGoBack.emit({\n fondationChecked: this.fondationChecked,\n structureChecked: this.structureChecked,\n elevationChecked: this.elevationChecked,\n });\n }\n }\n\n validate() {\n if (!this.isValid) {\n return;\n }\n\n this.formula = \"FONDATION\";\n if (this.elevationChecked) {\n this.formula = \"ELEVATION\";\n } else if (this.structureChecked) {\n this.formula = \"STRUCTURE\";\n }\n\n this.onNext.emit({\n fondationChecked: this.fondationChecked,\n structureChecked: this.structureChecked,\n elevationChecked: this.elevationChecked,\n formula: this.formula,\n });\n }\n\n openDemoSchedule() {\n window.open(\n \"https://contact.eva-it.ch/meetings/franck-lauer/visio-presentation-de-loffre-installation-de-eva\",\n \"_blank\",\n );\n }\n}\n","
\n
\n \n
\n\n
\n

On y est presque !

\n

\n Il nous faut encore quelques dernières informations pour personnaliser votre expérience et sécuriser votre compte.\n

\n\n
\n
\n \n
\n
\n
\n
\n \n
\n\n
\n
\n \n
\n
\n\n
\n
\n \n
    0\">\n
  • Au moins 8 caractères
  • \n
  • |
  • \n
  • Une majuscule
  • \n
  • |
  • \n
  • Un chiffre
  • \n
  • |
  • \n
  • Un caractère spécial
  • \n
\n
\n\n
0\">\n

{{ error }}

\n
\n\n
\n \n
\n
\n
\n","import { SignUpInputDto } from \"src/app/core/auth/dtos/signup.dto\";\nimport { EvaCompanyService } from \"src/app/features/eva-company/services/evaCompany.service\";\nimport { AuthenticationService } from \"src/app/services/authentication.service\";\n\nimport { Component, EventEmitter, Input, Output } from \"@angular/core\";\n\n@Component({\n selector: \"app-sign-up-v3-infos\",\n templateUrl: \"./sign-up-v3-infos.component.html\",\n styleUrl: \"./sign-up-v3-infos.component.scss\",\n})\nexport class SignUpV3InfosComponent {\n @Input() email: string = \"\";\n @Input() formula: string = \"\";\n @Input() interval: \"MONTHLY\" | \"YEARLY\" | \"LIFETIME\" = \"YEARLY\";\n\n companyName: string = \"\";\n firstName: string = \"\";\n lastName: string = \"\";\n password: string = \"\";\n\n errors = [];\n loading: boolean = false;\n\n @Output() onGoBack = new EventEmitter();\n @Output() onNext = new EventEmitter();\n\n constructor(\n private authService: AuthenticationService,\n private evaCompanyService: EvaCompanyService,\n ) {}\n\n goBack() {\n this.onGoBack.emit();\n }\n\n passwordValid = { length: false, uppercase: false, number: false, special: false };\n\n get isPasswordValid() {\n return (\n this.passwordValid.length &&\n this.passwordValid.uppercase &&\n this.passwordValid.number &&\n this.passwordValid.special\n );\n }\n\n validatePassword() {\n this.passwordValid.length = this.password.length >= 8;\n this.passwordValid.uppercase = /[A-Z]/.test(this.password);\n this.passwordValid.number = /\\d/.test(this.password);\n this.passwordValid.special = /[!@#$%^&*(),.?\":{}|<>]/.test(this.password);\n }\n\n async validate() {\n this.errors = [];\n\n if (this.companyName.trim() === \"\") {\n this.errors.push(\"Nom de l'entreprise manquant\");\n }\n\n if (this.firstName.trim() === \"\") {\n this.errors.push(\"Prénom manquant\");\n }\n\n if (this.firstName.trim() === \"\") {\n this.errors.push(\"Nom manquant\");\n }\n\n if (!this.isPasswordValid) {\n this.errors.push(\"Mot de passe invalide\");\n }\n\n if (this.errors.length > 0) {\n return;\n }\n\n this.loading = true;\n\n let signupDto: SignUpInputDto = {\n email: this.email,\n password: this.password,\n first_name: this.firstName,\n last_name: this.lastName,\n company_name: this.companyName,\n formula: this.formula,\n formula_type: \"LIGHT\",\n interval: this.interval,\n };\n\n this.authService.signUpV3(signupDto).subscribe({\n next: (response) => {\n this.loading = false;\n this.evaCompanyService.changeCompany(response.eva_company.eva_company_id, true, false);\n },\n error: (error) => {\n this.loading = false;\n this.errors.push(\"Une erreur est survenue, veuillez réessayer\");\n },\n });\n }\n}\n","
\n
\n
\n
\n \n Données sécurisées en Suisse\n
\n
\n \n Assistance technique gratuite\n
\n
\n \n Swiss made software\n
\n
\n \n Sans engagement\n
\n
\n\n \n\n \n\n \n
\n
\n","import { Location } from \"@angular/common\";\nimport { Component } from \"@angular/core\";\nimport { ActivatedRoute, Router } from \"@angular/router\";\nimport { provideIcons } from \"@ng-icons/core\";\nimport {\n heroChatBubbleLeftRightSolid,\n heroFolderPlusSolid,\n heroShieldCheckSolid,\n heroStarSolid,\n} from \"@ng-icons/heroicons/solid\";\n\n@Component({\n selector: \"app-sign-up-v3\",\n templateUrl: \"./sign-up-v3.component.html\",\n styleUrl: \"./sign-up-v3.component.scss\",\n viewProviders: [\n provideIcons({\n heroShieldCheckSolid,\n heroChatBubbleLeftRightSolid,\n heroFolderPlusSolid,\n heroStarSolid,\n }),\n ],\n})\nexport class SignUpV3Component {\n fondationChecked: boolean = false;\n structureChecked: boolean = false;\n elevationChecked: boolean = false;\n\n formula: string = \"\";\n\n email: string = \"\";\n\n step: \"FEATURES\" | \"EMAIL\" | \"INFOS\" = \"FEATURES\";\n\n selectedInterval: \"MONTHLY\" | \"YEARLY\" | \"LIFETIME\" = \"YEARLY\";\n\n constructor(\n private router: Router,\n private route: ActivatedRoute,\n private location: Location,\n ) {\n this.route.queryParams.subscribe((params) => {\n this.fondationChecked = params.fondationChecked === \"true\";\n this.structureChecked = params.fondationChecked === \"true\";\n this.elevationChecked = params.fondationChecked === \"true\";\n\n if (params.formula) {\n if ([\"FONDATION\", \"STRUCTURE\", \"ELEVATION\"].includes(params.formula)) {\n this.formula = params.formula;\n } else {\n this.formula = \"\";\n }\n\n if (params.interval && [\"MONTHLY\", \"YEARLY\", \"LIFETIME\"].includes(params.interval)) {\n this.selectedInterval = params.interval;\n } else {\n this.selectedInterval = \"YEARLY\";\n }\n\n if (this.formula && !this.fondationChecked && !this.structureChecked && !this.elevationChecked) {\n this.fondationChecked = false;\n this.structureChecked = false;\n this.elevationChecked = false;\n if (this.formula === \"FONDATION\") {\n this.fondationChecked = true;\n } else if (this.formula === \"STRUCTURE\") {\n this.fondationChecked = true;\n this.structureChecked = true;\n } else if (this.formula === \"ELEVATION\") {\n this.fondationChecked = true;\n this.structureChecked = true;\n this.elevationChecked = true;\n } else {\n this.formula = \"\";\n }\n }\n }\n if (params.email) {\n this.email = params.email;\n }\n\n if (params.step) {\n this.step = params.step;\n } else {\n if (this.formula) {\n this.step = \"EMAIL\";\n } else {\n this.step = \"FEATURES\";\n }\n }\n });\n }\n\n goBack() {\n if (this.step === \"FEATURES\") {\n this.router.navigate([\"/login\"]);\n } else if (this.step === \"EMAIL\") {\n this.step = \"FEATURES\";\n } else if (this.step === \"INFOS\") {\n this.step = \"EMAIL\";\n } else {\n this.step = \"FEATURES\";\n }\n }\n\n onNext(data: any) {\n if (this.step === \"FEATURES\") {\n this.fondationChecked = data.fondationChecked;\n this.structureChecked = data.structureChecked;\n this.elevationChecked = data.elevationChecked;\n this.formula = data.formula;\n this.step = \"EMAIL\";\n } else if (this.step === \"EMAIL\") {\n this.email = data.email;\n this.step = \"INFOS\";\n }\n\n this.updateUrlParams();\n }\n\n // Mise à jour des paramètres d’URL\n private updateUrlParams() {\n const params = new URLSearchParams();\n if (this.step) {\n params.set(\"step\", this.step);\n }\n if (this.email) {\n params.set(\"email\", this.email);\n }\n if (this.fondationChecked) {\n params.set(\"fondationChecked\", this.fondationChecked.toString());\n }\n if (this.structureChecked) {\n params.set(\"structureChecked\", this.structureChecked.toString());\n }\n if (this.elevationChecked) {\n params.set(\"elevationChecked\", this.elevationChecked.toString());\n }\n if (this.formula) {\n params.set(\"formula\", this.formula);\n }\n if (this.selectedInterval) {\n params.set(\"interval\", this.selectedInterval);\n }\n\n this.location.go(`/v3/sign-up?${params.toString()}`);\n }\n}\n","const heroAcademicCapSolid = ``;\nconst heroAdjustmentsHorizontalSolid = ``;\nconst heroAdjustmentsVerticalSolid = ``;\nconst heroArchiveBoxArrowDownSolid = ``;\nconst heroArchiveBoxXMarkSolid = ``;\nconst heroArchiveBoxSolid = ``;\nconst heroArrowDownCircleSolid = ``;\nconst heroArrowDownLeftSolid = ``;\nconst heroArrowDownOnSquareStackSolid = ``;\nconst heroArrowDownOnSquareSolid = ``;\nconst heroArrowDownRightSolid = ``;\nconst heroArrowDownTraySolid = ``;\nconst heroArrowDownSolid = ``;\nconst heroArrowLeftCircleSolid = ``;\nconst heroArrowLeftEndOnRectangleSolid = ``;\nconst heroArrowLeftOnRectangleSolid = ``;\nconst heroArrowLeftStartOnRectangleSolid = ``;\nconst heroArrowLeftSolid = ``;\nconst heroArrowLongDownSolid = ``;\nconst heroArrowLongLeftSolid = ``;\nconst heroArrowLongRightSolid = ``;\nconst heroArrowLongUpSolid = ``;\nconst heroArrowPathRoundedSquareSolid = ``;\nconst heroArrowPathSolid = ``;\nconst heroArrowRightCircleSolid = ``;\nconst heroArrowRightEndOnRectangleSolid = ``;\nconst heroArrowRightOnRectangleSolid = ``;\nconst heroArrowRightStartOnRectangleSolid = ``;\nconst heroArrowRightSolid = ``;\nconst heroArrowSmallDownSolid = ``;\nconst heroArrowSmallLeftSolid = ``;\nconst heroArrowSmallRightSolid = ``;\nconst heroArrowSmallUpSolid = ``;\nconst heroArrowTopRightOnSquareSolid = ``;\nconst heroArrowTrendingDownSolid = ``;\nconst heroArrowTrendingUpSolid = ``;\nconst heroArrowUpCircleSolid = ``;\nconst heroArrowUpLeftSolid = ``;\nconst heroArrowUpOnSquareStackSolid = ``;\nconst heroArrowUpOnSquareSolid = ``;\nconst heroArrowUpRightSolid = ``;\nconst heroArrowUpTraySolid = ``;\nconst heroArrowUpSolid = ``;\nconst heroArrowUturnDownSolid = ``;\nconst heroArrowUturnLeftSolid = ``;\nconst heroArrowUturnRightSolid = ``;\nconst heroArrowUturnUpSolid = ``;\nconst heroArrowsPointingInSolid = ``;\nconst heroArrowsPointingOutSolid = ``;\nconst heroArrowsRightLeftSolid = ``;\nconst heroArrowsUpDownSolid = ``;\nconst heroAtSymbolSolid = ``;\nconst heroBackspaceSolid = ``;\nconst heroBackwardSolid = ``;\nconst heroBanknotesSolid = ``;\nconst heroBars2Solid = ``;\nconst heroBars3BottomLeftSolid = ``;\nconst heroBars3BottomRightSolid = ``;\nconst heroBars3CenterLeftSolid = ``;\nconst heroBars3Solid = ``;\nconst heroBars4Solid = ``;\nconst heroBarsArrowDownSolid = ``;\nconst heroBarsArrowUpSolid = ``;\nconst heroBattery0Solid = ``;\nconst heroBattery100Solid = ``;\nconst heroBattery50Solid = ``;\nconst heroBeakerSolid = ``;\nconst heroBellAlertSolid = ``;\nconst heroBellSlashSolid = ``;\nconst heroBellSnoozeSolid = ``;\nconst heroBellSolid = ``;\nconst heroBoltSlashSolid = ``;\nconst heroBoltSolid = ``;\nconst heroBookOpenSolid = ``;\nconst heroBookmarkSlashSolid = ``;\nconst heroBookmarkSquareSolid = ``;\nconst heroBookmarkSolid = ``;\nconst heroBriefcaseSolid = ``;\nconst heroBugAntSolid = ``;\nconst heroBuildingLibrarySolid = ``;\nconst heroBuildingOffice2Solid = ``;\nconst heroBuildingOfficeSolid = ``;\nconst heroBuildingStorefrontSolid = ``;\nconst heroCakeSolid = ``;\nconst heroCalculatorSolid = ``;\nconst heroCalendarDaysSolid = ``;\nconst heroCalendarSolid = ``;\nconst heroCameraSolid = ``;\nconst heroChartBarSquareSolid = ``;\nconst heroChartBarSolid = ``;\nconst heroChartPieSolid = ``;\nconst heroChatBubbleBottomCenterTextSolid = ``;\nconst heroChatBubbleBottomCenterSolid = ``;\nconst heroChatBubbleLeftEllipsisSolid = ``;\nconst heroChatBubbleLeftRightSolid = ``;\nconst heroChatBubbleLeftSolid = ``;\nconst heroChatBubbleOvalLeftEllipsisSolid = ``;\nconst heroChatBubbleOvalLeftSolid = ``;\nconst heroCheckBadgeSolid = ``;\nconst heroCheckCircleSolid = ``;\nconst heroCheckSolid = ``;\nconst heroChevronDoubleDownSolid = ``;\nconst heroChevronDoubleLeftSolid = ``;\nconst heroChevronDoubleRightSolid = ``;\nconst heroChevronDoubleUpSolid = ``;\nconst heroChevronDownSolid = ``;\nconst heroChevronLeftSolid = ``;\nconst heroChevronRightSolid = ``;\nconst heroChevronUpDownSolid = ``;\nconst heroChevronUpSolid = ``;\nconst heroCircleStackSolid = ``;\nconst heroClipboardDocumentCheckSolid = ``;\nconst heroClipboardDocumentListSolid = ``;\nconst heroClipboardDocumentSolid = ``;\nconst heroClipboardSolid = ``;\nconst heroClockSolid = ``;\nconst heroCloudArrowDownSolid = ``;\nconst heroCloudArrowUpSolid = ``;\nconst heroCloudSolid = ``;\nconst heroCodeBracketSquareSolid = ``;\nconst heroCodeBracketSolid = ``;\nconst heroCog6ToothSolid = ``;\nconst heroCog8ToothSolid = ``;\nconst heroCogSolid = ``;\nconst heroCommandLineSolid = ``;\nconst heroComputerDesktopSolid = ``;\nconst heroCpuChipSolid = ``;\nconst heroCreditCardSolid = ``;\nconst heroCubeTransparentSolid = ``;\nconst heroCubeSolid = ``;\nconst heroCurrencyBangladeshiSolid = ``;\nconst heroCurrencyDollarSolid = ``;\nconst heroCurrencyEuroSolid = ``;\nconst heroCurrencyPoundSolid = ``;\nconst heroCurrencyRupeeSolid = ``;\nconst heroCurrencyYenSolid = ``;\nconst heroCursorArrowRaysSolid = ``;\nconst heroCursorArrowRippleSolid = ``;\nconst heroDevicePhoneMobileSolid = ``;\nconst heroDeviceTabletSolid = ``;\nconst heroDocumentArrowDownSolid = ``;\nconst heroDocumentArrowUpSolid = ``;\nconst heroDocumentChartBarSolid = ``;\nconst heroDocumentCheckSolid = ``;\nconst heroDocumentDuplicateSolid = ``;\nconst heroDocumentMagnifyingGlassSolid = ``;\nconst heroDocumentMinusSolid = ``;\nconst heroDocumentPlusSolid = ``;\nconst heroDocumentTextSolid = ``;\nconst heroDocumentSolid = ``;\nconst heroEllipsisHorizontalCircleSolid = ``;\nconst heroEllipsisHorizontalSolid = ``;\nconst heroEllipsisVerticalSolid = ``;\nconst heroEnvelopeOpenSolid = ``;\nconst heroEnvelopeSolid = ``;\nconst heroExclamationCircleSolid = ``;\nconst heroExclamationTriangleSolid = ``;\nconst heroEyeDropperSolid = ``;\nconst heroEyeSlashSolid = ``;\nconst heroEyeSolid = ``;\nconst heroFaceFrownSolid = ``;\nconst heroFaceSmileSolid = ``;\nconst heroFilmSolid = ``;\nconst heroFingerPrintSolid = ``;\nconst heroFireSolid = ``;\nconst heroFlagSolid = ``;\nconst heroFolderArrowDownSolid = ``;\nconst heroFolderMinusSolid = ``;\nconst heroFolderOpenSolid = ``;\nconst heroFolderPlusSolid = ``;\nconst heroFolderSolid = ``;\nconst heroForwardSolid = ``;\nconst heroFunnelSolid = ``;\nconst heroGifSolid = ``;\nconst heroGiftTopSolid = ``;\nconst heroGiftSolid = ``;\nconst heroGlobeAltSolid = ``;\nconst heroGlobeAmericasSolid = ``;\nconst heroGlobeAsiaAustraliaSolid = ``;\nconst heroGlobeEuropeAfricaSolid = ``;\nconst heroHandRaisedSolid = ``;\nconst heroHandThumbDownSolid = ``;\nconst heroHandThumbUpSolid = ``;\nconst heroHashtagSolid = ``;\nconst heroHeartSolid = ``;\nconst heroHomeModernSolid = ``;\nconst heroHomeSolid = ``;\nconst heroIdentificationSolid = ``;\nconst heroInboxArrowDownSolid = ``;\nconst heroInboxStackSolid = ``;\nconst heroInboxSolid = ``;\nconst heroInformationCircleSolid = ``;\nconst heroKeySolid = ``;\nconst heroLanguageSolid = ``;\nconst heroLifebuoySolid = ``;\nconst heroLightBulbSolid = ``;\nconst heroLinkSolid = ``;\nconst heroListBulletSolid = ``;\nconst heroLockClosedSolid = ``;\nconst heroLockOpenSolid = ``;\nconst heroMagnifyingGlassCircleSolid = ``;\nconst heroMagnifyingGlassMinusSolid = ``;\nconst heroMagnifyingGlassPlusSolid = ``;\nconst heroMagnifyingGlassSolid = ``;\nconst heroMapPinSolid = ``;\nconst heroMapSolid = ``;\nconst heroMegaphoneSolid = ``;\nconst heroMicrophoneSolid = ``;\nconst heroMinusCircleSolid = ``;\nconst heroMinusSmallSolid = ``;\nconst heroMinusSolid = ``;\nconst heroMoonSolid = ``;\nconst heroMusicalNoteSolid = ``;\nconst heroNewspaperSolid = ``;\nconst heroNoSymbolSolid = ``;\nconst heroPaintBrushSolid = ``;\nconst heroPaperAirplaneSolid = ``;\nconst heroPaperClipSolid = ``;\nconst heroPauseCircleSolid = ``;\nconst heroPauseSolid = ``;\nconst heroPencilSquareSolid = ``;\nconst heroPencilSolid = ``;\nconst heroPhoneArrowDownLeftSolid = ``;\nconst heroPhoneArrowUpRightSolid = ``;\nconst heroPhoneXMarkSolid = ``;\nconst heroPhoneSolid = ``;\nconst heroPhotoSolid = ``;\nconst heroPlayCircleSolid = ``;\nconst heroPlayPauseSolid = ``;\nconst heroPlaySolid = ``;\nconst heroPlusCircleSolid = ``;\nconst heroPlusSmallSolid = ``;\nconst heroPlusSolid = ``;\nconst heroPowerSolid = ``;\nconst heroPresentationChartBarSolid = ``;\nconst heroPresentationChartLineSolid = ``;\nconst heroPrinterSolid = ``;\nconst heroPuzzlePieceSolid = ``;\nconst heroQrCodeSolid = ``;\nconst heroQuestionMarkCircleSolid = ``;\nconst heroQueueListSolid = ``;\nconst heroRadioSolid = ``;\nconst heroReceiptPercentSolid = ``;\nconst heroReceiptRefundSolid = ``;\nconst heroRectangleGroupSolid = ``;\nconst heroRectangleStackSolid = ``;\nconst heroRocketLaunchSolid = ``;\nconst heroRssSolid = ``;\nconst heroScaleSolid = ``;\nconst heroScissorsSolid = ``;\nconst heroServerStackSolid = ``;\nconst heroServerSolid = ``;\nconst heroShareSolid = ``;\nconst heroShieldCheckSolid = ``;\nconst heroShieldExclamationSolid = ``;\nconst heroShoppingBagSolid = ``;\nconst heroShoppingCartSolid = ``;\nconst heroSignalSlashSolid = ``;\nconst heroSignalSolid = ``;\nconst heroSparklesSolid = ``;\nconst heroSpeakerWaveSolid = ``;\nconst heroSpeakerXMarkSolid = ``;\nconst heroSquare2StackSolid = ``;\nconst heroSquare3Stack3dSolid = ``;\nconst heroSquares2x2Solid = ``;\nconst heroSquaresPlusSolid = ``;\nconst heroStarSolid = ``;\nconst heroStopCircleSolid = ``;\nconst heroStopSolid = ``;\nconst heroSunSolid = ``;\nconst heroSwatchSolid = ``;\nconst heroTableCellsSolid = ``;\nconst heroTagSolid = ``;\nconst heroTicketSolid = ``;\nconst heroTrashSolid = ``;\nconst heroTrophySolid = ``;\nconst heroTruckSolid = ``;\nconst heroTvSolid = ``;\nconst heroUserCircleSolid = ``;\nconst heroUserGroupSolid = ``;\nconst heroUserMinusSolid = ``;\nconst heroUserPlusSolid = ``;\nconst heroUserSolid = ``;\nconst heroUsersSolid = ``;\nconst heroVariableSolid = ``;\nconst heroVideoCameraSlashSolid = ``;\nconst heroVideoCameraSolid = ``;\nconst heroViewColumnsSolid = ``;\nconst heroViewfinderCircleSolid = ``;\nconst heroWalletSolid = ``;\nconst heroWifiSolid = ``;\nconst heroWindowSolid = ``;\nconst heroWrenchScrewdriverSolid = ``;\nconst heroWrenchSolid = ``;\nconst heroXCircleSolid = ``;\nconst heroXMarkSolid = ``;\n\n/**\n * Generated bundle index. Do not edit.\n */\n\nexport { heroAcademicCapSolid, heroAdjustmentsHorizontalSolid, heroAdjustmentsVerticalSolid, heroArchiveBoxArrowDownSolid, heroArchiveBoxSolid, heroArchiveBoxXMarkSolid, heroArrowDownCircleSolid, heroArrowDownLeftSolid, heroArrowDownOnSquareSolid, heroArrowDownOnSquareStackSolid, heroArrowDownRightSolid, heroArrowDownSolid, heroArrowDownTraySolid, heroArrowLeftCircleSolid, heroArrowLeftEndOnRectangleSolid, heroArrowLeftOnRectangleSolid, heroArrowLeftSolid, heroArrowLeftStartOnRectangleSolid, heroArrowLongDownSolid, heroArrowLongLeftSolid, heroArrowLongRightSolid, heroArrowLongUpSolid, heroArrowPathRoundedSquareSolid, heroArrowPathSolid, heroArrowRightCircleSolid, heroArrowRightEndOnRectangleSolid, heroArrowRightOnRectangleSolid, heroArrowRightSolid, heroArrowRightStartOnRectangleSolid, heroArrowSmallDownSolid, heroArrowSmallLeftSolid, heroArrowSmallRightSolid, heroArrowSmallUpSolid, heroArrowTopRightOnSquareSolid, heroArrowTrendingDownSolid, heroArrowTrendingUpSolid, heroArrowUpCircleSolid, heroArrowUpLeftSolid, heroArrowUpOnSquareSolid, heroArrowUpOnSquareStackSolid, heroArrowUpRightSolid, heroArrowUpSolid, heroArrowUpTraySolid, heroArrowUturnDownSolid, heroArrowUturnLeftSolid, heroArrowUturnRightSolid, heroArrowUturnUpSolid, heroArrowsPointingInSolid, heroArrowsPointingOutSolid, heroArrowsRightLeftSolid, heroArrowsUpDownSolid, heroAtSymbolSolid, heroBackspaceSolid, heroBackwardSolid, heroBanknotesSolid, heroBars2Solid, heroBars3BottomLeftSolid, heroBars3BottomRightSolid, heroBars3CenterLeftSolid, heroBars3Solid, heroBars4Solid, heroBarsArrowDownSolid, heroBarsArrowUpSolid, heroBattery0Solid, heroBattery100Solid, heroBattery50Solid, heroBeakerSolid, heroBellAlertSolid, heroBellSlashSolid, heroBellSnoozeSolid, heroBellSolid, heroBoltSlashSolid, heroBoltSolid, heroBookOpenSolid, heroBookmarkSlashSolid, heroBookmarkSolid, heroBookmarkSquareSolid, heroBriefcaseSolid, heroBugAntSolid, heroBuildingLibrarySolid, heroBuildingOffice2Solid, heroBuildingOfficeSolid, heroBuildingStorefrontSolid, heroCakeSolid, heroCalculatorSolid, heroCalendarDaysSolid, heroCalendarSolid, heroCameraSolid, heroChartBarSolid, heroChartBarSquareSolid, heroChartPieSolid, heroChatBubbleBottomCenterSolid, heroChatBubbleBottomCenterTextSolid, heroChatBubbleLeftEllipsisSolid, heroChatBubbleLeftRightSolid, heroChatBubbleLeftSolid, heroChatBubbleOvalLeftEllipsisSolid, heroChatBubbleOvalLeftSolid, heroCheckBadgeSolid, heroCheckCircleSolid, heroCheckSolid, heroChevronDoubleDownSolid, heroChevronDoubleLeftSolid, heroChevronDoubleRightSolid, heroChevronDoubleUpSolid, heroChevronDownSolid, heroChevronLeftSolid, heroChevronRightSolid, heroChevronUpDownSolid, heroChevronUpSolid, heroCircleStackSolid, heroClipboardDocumentCheckSolid, heroClipboardDocumentListSolid, heroClipboardDocumentSolid, heroClipboardSolid, heroClockSolid, heroCloudArrowDownSolid, heroCloudArrowUpSolid, heroCloudSolid, heroCodeBracketSolid, heroCodeBracketSquareSolid, heroCog6ToothSolid, heroCog8ToothSolid, heroCogSolid, heroCommandLineSolid, heroComputerDesktopSolid, heroCpuChipSolid, heroCreditCardSolid, heroCubeSolid, heroCubeTransparentSolid, heroCurrencyBangladeshiSolid, heroCurrencyDollarSolid, heroCurrencyEuroSolid, heroCurrencyPoundSolid, heroCurrencyRupeeSolid, heroCurrencyYenSolid, heroCursorArrowRaysSolid, heroCursorArrowRippleSolid, heroDevicePhoneMobileSolid, heroDeviceTabletSolid, heroDocumentArrowDownSolid, heroDocumentArrowUpSolid, heroDocumentChartBarSolid, heroDocumentCheckSolid, heroDocumentDuplicateSolid, heroDocumentMagnifyingGlassSolid, heroDocumentMinusSolid, heroDocumentPlusSolid, heroDocumentSolid, heroDocumentTextSolid, heroEllipsisHorizontalCircleSolid, heroEllipsisHorizontalSolid, heroEllipsisVerticalSolid, heroEnvelopeOpenSolid, heroEnvelopeSolid, heroExclamationCircleSolid, heroExclamationTriangleSolid, heroEyeDropperSolid, heroEyeSlashSolid, heroEyeSolid, heroFaceFrownSolid, heroFaceSmileSolid, heroFilmSolid, heroFingerPrintSolid, heroFireSolid, heroFlagSolid, heroFolderArrowDownSolid, heroFolderMinusSolid, heroFolderOpenSolid, heroFolderPlusSolid, heroFolderSolid, heroForwardSolid, heroFunnelSolid, heroGifSolid, heroGiftSolid, heroGiftTopSolid, heroGlobeAltSolid, heroGlobeAmericasSolid, heroGlobeAsiaAustraliaSolid, heroGlobeEuropeAfricaSolid, heroHandRaisedSolid, heroHandThumbDownSolid, heroHandThumbUpSolid, heroHashtagSolid, heroHeartSolid, heroHomeModernSolid, heroHomeSolid, heroIdentificationSolid, heroInboxArrowDownSolid, heroInboxSolid, heroInboxStackSolid, heroInformationCircleSolid, heroKeySolid, heroLanguageSolid, heroLifebuoySolid, heroLightBulbSolid, heroLinkSolid, heroListBulletSolid, heroLockClosedSolid, heroLockOpenSolid, heroMagnifyingGlassCircleSolid, heroMagnifyingGlassMinusSolid, heroMagnifyingGlassPlusSolid, heroMagnifyingGlassSolid, heroMapPinSolid, heroMapSolid, heroMegaphoneSolid, heroMicrophoneSolid, heroMinusCircleSolid, heroMinusSmallSolid, heroMinusSolid, heroMoonSolid, heroMusicalNoteSolid, heroNewspaperSolid, heroNoSymbolSolid, heroPaintBrushSolid, heroPaperAirplaneSolid, heroPaperClipSolid, heroPauseCircleSolid, heroPauseSolid, heroPencilSolid, heroPencilSquareSolid, heroPhoneArrowDownLeftSolid, heroPhoneArrowUpRightSolid, heroPhoneSolid, heroPhoneXMarkSolid, heroPhotoSolid, heroPlayCircleSolid, heroPlayPauseSolid, heroPlaySolid, heroPlusCircleSolid, heroPlusSmallSolid, heroPlusSolid, heroPowerSolid, heroPresentationChartBarSolid, heroPresentationChartLineSolid, heroPrinterSolid, heroPuzzlePieceSolid, heroQrCodeSolid, heroQuestionMarkCircleSolid, heroQueueListSolid, heroRadioSolid, heroReceiptPercentSolid, heroReceiptRefundSolid, heroRectangleGroupSolid, heroRectangleStackSolid, heroRocketLaunchSolid, heroRssSolid, heroScaleSolid, heroScissorsSolid, heroServerSolid, heroServerStackSolid, heroShareSolid, heroShieldCheckSolid, heroShieldExclamationSolid, heroShoppingBagSolid, heroShoppingCartSolid, heroSignalSlashSolid, heroSignalSolid, heroSparklesSolid, heroSpeakerWaveSolid, heroSpeakerXMarkSolid, heroSquare2StackSolid, heroSquare3Stack3dSolid, heroSquares2x2Solid, heroSquaresPlusSolid, heroStarSolid, heroStopCircleSolid, heroStopSolid, heroSunSolid, heroSwatchSolid, heroTableCellsSolid, heroTagSolid, heroTicketSolid, heroTrashSolid, heroTrophySolid, heroTruckSolid, heroTvSolid, heroUserCircleSolid, heroUserGroupSolid, heroUserMinusSolid, heroUserPlusSolid, heroUserSolid, heroUsersSolid, heroVariableSolid, heroVideoCameraSlashSolid, heroVideoCameraSolid, heroViewColumnsSolid, heroViewfinderCircleSolid, heroWalletSolid, heroWifiSolid, heroWindowSolid, heroWrenchScrewdriverSolid, heroWrenchSolid, heroXCircleSolid, heroXMarkSolid };\n","import { Routes } from \"@angular/router\";\n\nimport { EnableAccountComponent } from \"./enable-account/enable-account.component\";\nimport { ForgotPasswordComponent } from \"./forgotPassword/forgot-password.component\";\nimport { LoginComponent } from \"./login/login.component\";\nimport { LogoutComponent } from \"./logout/logout.component\";\nimport { CompanySettingsFormComponent } from \"./on-boarding/company-settings-form/company-settings-form.component\";\nimport { MeetingComponent } from \"./on-boarding/meeting/meeting.component\";\nimport { SignUpFormComponent } from \"./on-boarding/sign-up-form/sign-up-form.component\";\nimport { SuccessModalComponent } from \"./on-boarding/success-modal/success-modal.component\";\nimport { ValidationCodeKeyComponent } from \"./on-boarding/validation-code-key/validation-code-key.component\";\nimport { ResetPasswordComponent } from \"./reset-password/reset-password.component\";\nimport { SignUpV2Component } from \"./sign-up-v2/sign-up-v2.component\";\nimport { SignUpV3Component } from \"./sign-up-v3/sign-up-v3.component\";\n\nexport const AuthLayoutRoutes: Routes = [\n { path: \"login\", component: LoginComponent },\n { path: \"forgot_password\", component: ForgotPasswordComponent },\n { path: \"enable-account/:enable_code\", component: EnableAccountComponent },\n { path: \"reset-password/:reset_code\", component: ResetPasswordComponent },\n { path: \"sign-up\", component: SignUpV2Component },\n { path: \"validation-code\", component: ValidationCodeKeyComponent },\n { path: \"register-user\", component: SignUpFormComponent },\n { path: \"create-company\", component: CompanySettingsFormComponent },\n { path: \"meeting\", component: MeetingComponent },\n { path: \"sign-up-success\", component: SuccessModalComponent },\n { path: \"v2/sign-up\", component: SignUpV3Component },\n { path: \"v3/sign-up\", component: SignUpV3Component },\n { path: \"logout\", component: LogoutComponent },\n];\n","import { SharedModule } from \"src/app/shared/shared.module\";\n\nimport { CommonModule } from \"@angular/common\";\nimport { HttpClientModule } from \"@angular/common/http\";\nimport { NgModule } from \"@angular/core\";\nimport { FormsModule, ReactiveFormsModule } from \"@angular/forms\";\nimport { RouterModule } from \"@angular/router\";\n\nimport { AuthLayoutRoutes } from \"./auth-layout.routing\";\nimport { EnableAccountComponent } from \"./enable-account/enable-account.component\";\nimport { ForgotPasswordComponent } from \"./forgotPassword/forgot-password.component\";\nimport { LoginComponent } from \"./login/login.component\";\nimport { MeetingComponent } from \"./on-boarding/meeting/meeting.component\";\nimport { SuccessModalComponent } from \"./on-boarding/success-modal/success-modal.component\";\nimport { ValidationCodeKeyComponent } from \"./on-boarding/validation-code-key/validation-code-key.component\";\nimport { ResetPasswordComponent } from \"./reset-password/reset-password.component\";\nimport { SignUpV3Component } from './sign-up-v3/sign-up-v3.component';\nimport { SignUpV3EmailComponent } from './sign-up-v3-email/sign-up-v3-email.component';\nimport { SignUpV3FeaturesComponent } from './sign-up-v3-features/sign-up-v3-features.component';\nimport { SignUpV3MoreFeaturesComponent } from './sign-up-v3-more-features/sign-up-v3-more-features.component';\nimport { SignUpV3InfosComponent } from './sign-up-v3-infos/sign-up-v3-infos.component';\n\n@NgModule({\n imports: [\n ReactiveFormsModule,\n HttpClientModule,\n CommonModule,\n RouterModule.forChild(AuthLayoutRoutes),\n FormsModule,\n SharedModule,\n ],\n declarations: [\n LoginComponent,\n ForgotPasswordComponent,\n EnableAccountComponent,\n ResetPasswordComponent,\n ValidationCodeKeyComponent,\n MeetingComponent,\n SuccessModalComponent,\n SignUpV3Component,\n SignUpV3EmailComponent,\n SignUpV3FeaturesComponent,\n SignUpV3MoreFeaturesComponent,\n SignUpV3InfosComponent,\n ],\n})\nexport class AuthLayoutModule {}\n","import { map, Observable } from \"rxjs\";\nimport { environment } from \"src/environments/environment\";\n\nimport { HttpClient } from \"@angular/common/http\";\nimport { Injectable } from \"@angular/core\";\n\nimport { Supplier } from \"../domains\";\nimport { AddressObjectType, EvaAddress } from \"../domains/address\";\nimport { Customer } from \"../features/customer/domains/customer\";\n\ndeclare var google: any;\n\n@Injectable({\n providedIn: \"root\",\n})\nexport class AddressService {\n public url = environment.apiUrl + \"/address\";\n\n constructor(private http: HttpClient) {}\n\n // CUSTOMERS ADDRESSES //\n\n post_customer_address(customer: Customer, address: EvaAddress): Observable {\n return this.http\n .post(this.url + \"/\" + AddressObjectType.CUSTOMER + \"/\" + customer.customer_id, address)\n .pipe(map(EvaAddress.createInstance));\n }\n\n update_customer_address(customer: Customer, address: EvaAddress): Observable {\n return this.http\n .put(\n this.url + \"/\" + AddressObjectType.CUSTOMER + \"/\" + customer.customer_id + \"/address/\" + address.address_id,\n address\n )\n .pipe(map(EvaAddress.createInstance));\n }\n\n delete_customer_address(customer: Customer, address: EvaAddress): Observable {\n return this.http\n .delete(\n this.url + \"/\" + AddressObjectType.CUSTOMER + \"/\" + customer.customer_id + \"/address/\" + address.address_id\n )\n .pipe(map(EvaAddress.createInstance));\n }\n\n // SUPPLIERS ADDRESSES //\n\n post_supplier_address(supplier: Supplier, address: EvaAddress): Observable {\n return this.http\n .post(this.url + \"/\" + AddressObjectType.SUPPLIER + \"/\" + supplier.supplier_id, address)\n .pipe(map(EvaAddress.createInstance));\n }\n\n update_supplier_address(supplier: Supplier, address: EvaAddress): Observable {\n return this.http\n .put(\n this.url + \"/\" + AddressObjectType.SUPPLIER + \"/\" + supplier.supplier_id + \"/address/\" + address.address_id,\n address\n )\n .pipe(map(EvaAddress.createInstance));\n }\n\n delete_supplier_address(supplier: Supplier, address: EvaAddress): Observable {\n return this.http\n .delete(\n this.url + \"/\" + AddressObjectType.SUPPLIER + \"/\" + supplier.supplier_id + \"/address/\" + address.address_id\n )\n .pipe(map(EvaAddress.createInstance));\n }\n\n public create_from_google_address(googleaddress: any, evaAdress: EvaAddress) {\n let street_number = \"\";\n let address = \"\";\n let city = \"\";\n let region = \"\";\n let country = \"\";\n let postcode = \"\";\n googleaddress.address_components.forEach((add) => {\n add.types.forEach((addType) => {\n if (addType == \"street_number\") street_number = add.long_name;\n if (addType == \"route\") address = add.long_name;\n if (addType == \"locality\" || addType == \"sublocality_level_1\") city = add.long_name;\n if (addType == \"administrative_area_level_1\") region = add.long_name;\n if (addType == \"country\") country = add.long_name;\n if (addType == \"postal_code\") postcode = add.long_name;\n });\n });\n evaAdress.street = address + \" \" + street_number;\n evaAdress.city = city;\n evaAdress.region = region;\n evaAdress.country = country;\n evaAdress.postcode = postcode;\n\n evaAdress.lat = googleaddress.geometry.location.lat();\n evaAdress.lng = googleaddress.geometry.location.lng();\n }\n\n public updateAddressMarkers(domain: any, overlays: any) {\n for (let i = 0; i < domain?.addresses?.length; i++) {\n let addresslat = domain.addresses[i].lat;\n let addresslng = domain.addresses[i].lng;\n let address_type = domain.addresses[i].address_type;\n let city = domain.addresses[i].city;\n overlays.push(\n new google.maps.Marker({\n position: { lat: addresslat, lng: addresslng },\n title: `${city}-${address_type}`,\n })\n );\n }\n }\n\n getFormErrors(address: EvaAddress): string[] {\n let errors = [];\n if (address.address_type == null || address.address_type.trim() === \"\") {\n errors.push(\"Vous devez renseigner un type d'adresse.\");\n }\n\n if (address.inlineAddress == null || address.inlineAddress.trim() === \"\") {\n errors.push(\"Vous devez renseigner une adresse.\");\n }\n\n return errors;\n }\n\n getFrenchCompanyStreet(company) {\n let street = \"\";\n if (\n company.adresseEtablissement.numeroVoieEtablissement &&\n company.adresseEtablissement.typeVoieEtablissement &&\n company.adresseEtablissement.libelleVoieEtablissement\n ) {\n street =\n company.adresseEtablissement.numeroVoieEtablissement +\n \" \" +\n company.adresseEtablissement.typeVoieEtablissement +\n \" \" +\n company.adresseEtablissement.libelleVoieEtablissement;\n }\n if (\n company.adresseEtablissement.numeroVoieEtablissement == null &&\n company.adresseEtablissement.typeVoieEtablissement &&\n company.adresseEtablissement.libelleVoieEtablissement\n ) {\n street =\n company.adresseEtablissement.typeVoieEtablissement +\n \" \" +\n company.adresseEtablissement.libelleVoieEtablissement;\n }\n if (\n company.adresseEtablissement.numeroVoieEtablissement == null &&\n company.adresseEtablissement.typeVoieEtablissement == null &&\n company.adresseEtablissement.libelleVoieEtablissement\n ) {\n street = company.adresseEtablissement.libelleVoieEtablissement;\n }\n\n return street;\n }\n}\n","export function hasUppercaseLetter(password: string): boolean {\n // Vérifier si le mot de passe contient au moins une lettre majuscule\n const regex = /[A-Z]/;\n return regex.test(password);\n}\n\nexport function hasLowercaseLetter(password: string): boolean {\n // Vérifier si le mot de passe contient au moins une lettre minuscule\n const regex = /[a-z]/;\n return regex.test(password);\n}\n\nexport function hasDigit(password: string): boolean {\n // Vérifier si le mot de passe contient au moins un chiffre\n const regex = /\\d/;\n return regex.test(password);\n}\n\nexport function hasSpecialCharacter(password: string): boolean {\n // Vérifier si le mot de passe contient au moins un caractère spécial\n const regex = /[?!@#$%^&*()\\-_=+{};:,<.>]/;\n return regex.test(password);\n}\n\nexport function getPasswordErrors(password): string[] {\n let errors = [];\n if (!password || password.trim() === \"\") {\n errors.push(\"Vous devez renseigner votre mot de passe.\");\n }\n\n if (password) {\n if (password.length < 8) {\n errors.push(\"Le mot de passe doit contenir 8 caractères minimum\");\n }\n\n if (!hasUppercaseLetter(password)) {\n errors.push(\"Le mot de passe doit contenir au moins une lettre majuscule.\");\n }\n\n if (!hasLowercaseLetter(password)) {\n errors.push(\"Le mot de passe doit contenir au moins une lettre minuscule.\");\n }\n\n if (!hasDigit(password)) {\n errors.push(\"Le mot de passe doit contenir au moins un chiffre.\");\n }\n\n if (!hasSpecialCharacter(password)) {\n errors.push(\"Le mot de passe doit contenir au moins un caractère spécial.\");\n }\n }\n return errors;\n}\n","export function tvaformat(tva) {\n if (/^CHE\\d{9}$/.test(tva)) {\n const part1 = tva.slice(0, 3);\n const part2 = tva.slice(3, 6);\n const part3 = tva.slice(6, 9);\n\n const format = `${part1}-${part2}.${part3}.${tva.slice(9)}`;\n\n return format;\n } else {\n return tva;\n }\n}\n\nexport function swissLocalIdFormat(input) {\n const groupe1 = input.substring(2, 5);\n const groupe2 = input.substring(5, 6);\n const groupe3 = input.substring(6, 9);\n const groupe4 = input.substring(9, 12);\n const groupe5 = input.substring(12);\n\n return `CH-${groupe1}.${groupe2}.${groupe3}.${groupe4}-${groupe5}`;\n}\n"],"names":["i0","svg_r1","src","_c0","top","left","width","height","transform","_r2","ctx_r2","showPassword","_r4","error_r5","EnableAccountComponent_div_18_div_1_Template","formErrors","EnableAccountComponent","hasErrors","this","length","constructor","route","router","userService","authenticationService","evaService","password","error","backgroundSvgs","svgFiles","ngOnInit","sub","params","subscribe","enable_code","enableAccount","getPasswordErrors","k","success","showSuccess","navigate","logout","showError","error_type","static","t","i1","i2","i3","i4","core","VBU","selectors","decls","vars","consts","template","rf","ctx","EnableAccountComponent_img_3_Template","$event","EnableAccountComponent_i_16_Template","EnableAccountComponent_i_17_Template","EnableAccountComponent_div_18_Template","_c2","ctx_r1","ForgotPasswordComponent","loading","submitted","ask_reset_password","email","askResetPassword","navigateByUrl","ForgotPasswordComponent_img_3_Template","ForgotPasswordComponent_small_19_Template","ForgotPasswordComponent_div_22_Template","_c1","_c3","LoginComponent_div_3_img_1_Template","LoginComponent_small_21_div_1_Template","f","username","errors","required","LoginComponent_small_31_div_1_Template","LoginComponent","formBuilder","deviceService","appStateService","evaLayoutService","loadingReset","deviceInfo","isMobile","displayPopup","passwordExpiredMessage","currentUserValue","loginForm","group","Validators","getDeviceInfo","returnUrl","snapshot","queryParams","localStorage","getItem","clearErrors","passwordExpired$","expired","isMobile$","controls","openAppLink","device","window","open","onSubmit","requestPasswordReset","invalid","login","value","next","response","status","context","console","checkIfPasswordExpired","log","get","onAskNewAccount","toggleShowPassword","document","getElementById","type","i5","i6","i7","LoginComponent_div_3_Template","LoginComponent_small_21_Template","LoginComponent_small_31_Template","LoginComponent_div_37_Template","LogoutComponent","dbService","_this","_asyncToGenerator","clear","sessionStorage","firstValueFrom","clearAll","then","location","reload","MeetingComponent","sanitizer","user","url","getUser","getSafeIframeSrc","err","baseUrl","firstName","encodeURIComponent","first_name","lastName","last_name","user_id","bypassSecurityTrustResourceUrl","error_r2","SignUpFormComponent_small_42_div_1_Template","goToCompanySettings","SignUpFormComponent","User","errorsDetected","EventEmitter","isExpired","isUserExist","showConfirmationPassword","getFormErrors","trim","push","passwordConfimation","concat","createUser","inputs","outputs","SignUpFormComponent_img_3_Template","SignUpFormComponent_small_42_Template","SignUpFormComponent_div_43_Template","SignUpFormComponent_div_44_Template","SignUpFormComponent_div_45_Template","SuccessModalComponent","returnToLogin","ValidationCodeKeyComponent","authService","evaCompanyService","validationCode","mail","getUserMail","validationObservable","validateLoginOtp","validateToken","toPromise","load","handleSuccess","handleErrors","sendBackEmailToken","reSEndValidationCode","ValidationCodeKeyComponent_img_3_Template","ValidationCodeKeyComponent_small_19_Template","ValidationCodeKeyComponent_div_22_Template","ResetPasswordComponent_small_21_div_1_Template","ResetPasswordComponent","reset_code","resetPassword","ResetPasswordComponent_img_3_Template","ResetPasswordComponent_i_19_Template","ResetPasswordComponent_i_20_Template","ResetPasswordComponent_small_21_Template","ResetPasswordComponent_div_24_Template","_r1","onFormulaSelected","onIntervalSelected","selectedInterval","globalError","_r3","SignUpV2Component_div_2_div_20_Template","SignUpV2Component_div_2_div_25_Template","company_name","SignUpV2Component_div_2_div_31_Template","SignUpV2Component_div_2_div_37_Template","SignUpV2Component_div_2_div_43_Template","goBackToHome","signUp","SignUpV2Component_div_2_div_52_Template","selectedFormula","name","badge","image","emailValid","passwordValid","SignUpV2Component_div_3_div_8_Template","goBackToForm","validateCode","SignUpV2Component_div_3_div_12_Template","SignUpV2Component","test","renderer","evaSubscriptionService","step","steps","formulas","formula","includes","formulaId","getFormulaById","payment_type","Clarity","upgrade","ngOnDestroy","onPopState","event","go","path","checkFields","updateUrlParams","askSignUp","id","formula_type","formulaType","interval","res","_ref","changeCompany","eva_company","eva_company_id","_x","apply","arguments","URLSearchParams","set","toString","hostBindings","SignUpV2Component_div_1_Template","SignUpV2Component_div_2_Template","SignUpV2Component_div_3_Template","CommonModule","FormsModule","InputTextModule","ButtonModule","i8","SharedModule","i9","i10","styles","ctx_r0","SignUpV3EmailComponent","onGoBack","onNext","goBack","emit","validateEmail","validate","emailStatus","checkEmail","SignUpV3EmailComponent_p_21_Template","fondationChecked","structureChecked","elevationChecked","lightMode","isValid","feature_r4","SignUpV3FeaturesComponent_div_4_div_10_Template","openDemoSchedule","expertFeatures","SignUpV3FeaturesComponent","SignUpV3FeaturesComponent_div_3_Template","SignUpV3FeaturesComponent_div_4_Template","isPasswordValid","uppercase","number","special","SignUpV3InfosComponent_div_30_p_1_Template","SignUpV3InfosComponent","companyName","validatePassword","signUpV3","SignUpV3InfosComponent_ul_29_Template","SignUpV3InfosComponent_div_30_Template","SignUpV3Component","data","features","provideIcons","heroShieldCheckSolid","heroChatBubbleLeftRightSolid","heroFolderPlusSolid","heroStarSolid","SignUpV3Component_app_sign_up_v3_features_19_Template","SignUpV3Component_app_sign_up_v3_email_20_Template","SignUpV3Component_app_sign_up_v3_infos_21_Template","AuthLayoutRoutes","component","CompanySettingsFormComponent","AuthLayoutModule","$C","G2t","ReactiveFormsModule","HttpClientModule","RouterModule","forChild","AddressService","http","environment","apiUrl","post_customer_address","customer","address","post","AddressObjectType","CUSTOMER","customer_id","pipe","map","EvaAddress","createInstance","update_customer_address","put","address_id","delete_customer_address","delete","post_supplier_address","supplier","SUPPLIER","supplier_id","update_supplier_address","delete_supplier_address","create_from_google_address","googleaddress","evaAdress","street_number","city","region","country","postcode","address_components","forEach","add","types","addType","long_name","street","lat","geometry","lng","updateAddressMarkers","domain","overlays","i","addresses","google","maps","Marker","position","title","address_type","inlineAddress","getFrenchCompanyStreet","company","adresseEtablissement","numeroVoieEtablissement","typeVoieEtablissement","libelleVoieEtablissement","_angular_core__WEBPACK_IMPORTED_MODULE_3__","jDH","factory","ɵfac","providedIn","hasUppercaseLetter","hasLowercaseLetter","hasDigit","hasSpecialCharacter","tvaformat","tva","slice","swissLocalIdFormat","input","substring"],"mappings":"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","debug_id":"1b32ab7d-ca6d-56ed-99d8-e0f0c7d1b252"}