mirror of https://github.com/ghostfolio/ghostfolio
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
1.2 KiB
45 lines
1.2 KiB
<header>
|
|
<gf-header
|
|
class="position-fixed px-2 w-100"
|
|
[currentRoute]="currentRoute"
|
|
[info]="info"
|
|
[user]="user"
|
|
(signOut)="onSignOut()"
|
|
></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">
|
|
<div
|
|
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>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<router-outlet></router-outlet>
|
|
</main>
|
|
|
|
<footer
|
|
*ngIf="currentRoute === 'start' || deviceType !== 'mobile'"
|
|
class="footer d-flex justify-content-center position-absolute w-100"
|
|
>
|
|
<div class="container text-center">
|
|
<div>
|
|
© {{ currentYear }} <a href="https://ghostfol.io">Ghostfolio</a>
|
|
{{ version }}
|
|
</div>
|
|
<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>
|
|
|