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.
54 lines
1.5 KiB
54 lines
1.5 KiB
<gf-dialog-header
|
|
mat-dialog-title
|
|
position="center"
|
|
title="Ghostfolio Premium Data Provider"
|
|
[deviceType]="data.deviceType"
|
|
(closeButtonClicked)="onCancel()"
|
|
/>
|
|
|
|
<div class="text-center" mat-dialog-content>
|
|
<p class="gf-text-wrap-balance mb-1">
|
|
The official
|
|
<a
|
|
class="align-items-center d-inline-flex"
|
|
target="_blank"
|
|
[href]="data.pricingUrl"
|
|
>Ghostfolio Premium
|
|
<gf-premium-indicator class="d-inline-block ml-1" [enableLink]="false" />
|
|
</a>
|
|
data provider <strong>for self-hosters</strong>, offering
|
|
<strong>80’000+ tickers</strong> from over <strong>50 exchanges</strong>, is
|
|
coming soon!
|
|
</p>
|
|
<p i18n>
|
|
Want to stay updated? Click below to get notified as soon as it’s available.
|
|
</p>
|
|
<div>
|
|
<a
|
|
color="primary"
|
|
href="mailto:hi@ghostfol.io?Subject=Ghostfolio Premium Data Provider&body=Hello%0D%0DPlease notify me as soon as the Ghostfolio Premium Data Provider is available.%0D%0DKind regards"
|
|
i18n
|
|
mat-flat-button
|
|
>Notify me</a
|
|
>
|
|
@if (data.user?.settings?.isExperimentalFeatures) {
|
|
<div>
|
|
<small class="text-muted" i18n>or</small>
|
|
</div>
|
|
<button
|
|
color="accent"
|
|
i18n
|
|
mat-stroked-button
|
|
(click)="onSetGhostfolioApiKey()"
|
|
>
|
|
I have an API key
|
|
</button>
|
|
}
|
|
</div>
|
|
</div>
|
|
|
|
<gf-dialog-footer
|
|
mat-dialog-actions
|
|
[deviceType]="data.deviceType"
|
|
(closeButtonClicked)="onCancel()"
|
|
/>
|
|
|