2021-04-13 21:53:58 +02:00
|
|
|
<header>
|
|
|
|
<gf-header
|
|
|
|
class="position-fixed px-2 w-100"
|
|
|
|
[currentRoute]="currentRoute"
|
2021-04-18 19:06:54 +02:00
|
|
|
[info]="info"
|
2021-04-13 21:53:58 +02:00
|
|
|
[user]="user"
|
2021-05-24 09:38:44 +02:00
|
|
|
(signOut)="onSignOut()"
|
2021-04-13 21:53:58 +02:00
|
|
|
></gf-header>
|
|
|
|
</header>
|
|
|
|
|
|
|
|
<main role="main">
|
|
|
|
<div *ngIf="canCreateAccount" class="container create-account-container">
|
|
|
|
<div class="row mb-5">
|
|
|
|
<div class="col-md-6 offset-md-3">
|
2021-06-05 17:16:07 +02:00
|
|
|
<a [routerLink]="['/']">
|
|
|
|
<mat-card
|
|
|
|
class="create-account-box p-2 text-center"
|
|
|
|
(click)="onCreateAccount()"
|
|
|
|
>
|
|
|
|
<div class="mt-1" i18n>You are using the Live Demo.</div>
|
|
|
|
<button mat-button color="primary" i18n>Create Account</button>
|
|
|
|
</mat-card></a
|
2021-04-13 21:53:58 +02:00
|
|
|
>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<router-outlet></router-outlet>
|
|
|
|
</main>
|
|
|
|
|
2021-05-22 13:45:50 +02:00
|
|
|
<footer
|
|
|
|
*ngIf="currentRoute === 'start' || deviceType !== 'mobile'"
|
|
|
|
class="footer d-flex justify-content-center position-absolute w-100"
|
|
|
|
>
|
2021-04-13 21:53:58 +02:00
|
|
|
<div class="container text-center">
|
2021-04-18 19:01:31 +02:00
|
|
|
<div>
|
|
|
|
© {{ currentYear }} <a href="https://ghostfol.io">Ghostfolio</a>
|
|
|
|
{{ version }}
|
|
|
|
</div>
|
2021-04-13 21:53:58 +02:00
|
|
|
<div class="py-2 text-muted">
|
|
|
|
<small i18n
|
|
|
|
>The risk of loss in trading can be substantial. It is not advisable to
|
|
|
|
invest money you may need in the short term.</small
|
|
|
|
>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</footer>
|