bugfixes
This commit is contained in:
parent
3bb2f4b5bd
commit
8c1bc2e0e5
5 changed files with 8 additions and 6 deletions
|
|
@ -1,4 +1,6 @@
|
||||||
<footer class="footer">
|
<footer class="footer">
|
||||||
<a routerLink="/privacy-policy">{{ "sidebar.privacyPolicy" | translate }}</a>
|
<a routerLink="/login/privacy-policy">{{
|
||||||
<a routerLink="/imprint">{{ "sidebar.legalNotice" | translate }}</a>
|
"sidebar.privacyPolicy" | translate
|
||||||
|
}}</a>
|
||||||
|
<a routerLink="/login/imprint">{{ "sidebar.legalNotice" | translate }}</a>
|
||||||
</footer>
|
</footer>
|
||||||
|
|
|
||||||
|
|
@ -138,7 +138,7 @@
|
||||||
<div class="label">
|
<div class="label">
|
||||||
<p>
|
<p>
|
||||||
I accept the
|
I accept the
|
||||||
<a routerLink="/privacy-policy">Privacy policy</a>
|
<a routerLink="/login/privacy-policy">Privacy policy</a>
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
|
|
@ -26,7 +26,7 @@ export class ImprintComponent {
|
||||||
|
|
||||||
checkCurrentRoute(): void {
|
checkCurrentRoute(): void {
|
||||||
const currentUrl = this.router.url;
|
const currentUrl = this.router.url;
|
||||||
if (currentUrl === '/imprint') {
|
if (currentUrl === '/login/imprint') {
|
||||||
this.isRouteLogin = true;
|
this.isRouteLogin = true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -26,7 +26,7 @@ export class PrivacyPolicyComponent implements OnInit {
|
||||||
|
|
||||||
checkCurrentRoute(): void {
|
checkCurrentRoute(): void {
|
||||||
const currentUrl = this.router.url;
|
const currentUrl = this.router.url;
|
||||||
if (currentUrl === '/privacy-policy') {
|
if (currentUrl === '/login/privacy-policy') {
|
||||||
this.isRouteLogin = true;
|
this.isRouteLogin = true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -11,7 +11,7 @@
|
||||||
src="./../../../../../assets/img/sidebar/summary.svg"
|
src="./../../../../../assets/img/sidebar/summary.svg"
|
||||||
alt="summary"
|
alt="summary"
|
||||||
/>
|
/>
|
||||||
<p>{{ "sidebar.summary" | translate }}y</p>
|
<p>{{ "sidebar.summary" | translate }}</p>
|
||||||
</div>
|
</div>
|
||||||
<div
|
<div
|
||||||
class="nav-links"
|
class="nav-links"
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue