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.
74 lines
2.1 KiB
74 lines
2.1 KiB
<gf-dialog-header
|
|
mat-dialog-title
|
|
[title]="data.title"
|
|
(closeButtonClicked)="onClose()"
|
|
/>
|
|
|
|
<div class="py-3" mat-dialog-content>
|
|
<div class="align-items-center d-flex flex-column">
|
|
<form class="w-100" (ngSubmit)="onLoginWithAccessToken()">
|
|
<mat-form-field appearance="outline" class="without-hint w-100">
|
|
<mat-label i18n>Security Token</mat-label>
|
|
<input
|
|
matInput
|
|
name="password"
|
|
[type]="isAccessTokenHidden ? 'password' : 'text'"
|
|
[(ngModel)]="data.accessToken"
|
|
/>
|
|
<button
|
|
mat-button
|
|
matSuffix
|
|
type="button"
|
|
(click)="isAccessTokenHidden = !isAccessTokenHidden"
|
|
>
|
|
<ion-icon
|
|
[name]="isAccessTokenHidden ? 'eye-outline' : 'eye-off-outline'"
|
|
/>
|
|
</button>
|
|
</mat-form-field>
|
|
</form>
|
|
<ng-container *ngIf="data.hasPermissionToUseSocialLogin">
|
|
<div class="my-3 text-center text-muted" i18n>or</div>
|
|
<div class="d-flex flex-column">
|
|
<button
|
|
class="mb-2 px-4 rounded-pill"
|
|
mat-stroked-button
|
|
(click)="onLoginWithInternetIdentity()"
|
|
>
|
|
<img
|
|
class="mr-2"
|
|
src="../assets/icons/internet-computer.svg"
|
|
style="height: 0.75rem"
|
|
/><span i18n>Sign in with Internet Identity</span>
|
|
</button>
|
|
<a
|
|
class="px-4 rounded-pill"
|
|
href="../api/v1/auth/google"
|
|
mat-stroked-button
|
|
><img
|
|
class="mr-2"
|
|
src="../assets/icons/google.svg"
|
|
style="height: 1rem"
|
|
/><span i18n>Sign in with Google</span></a
|
|
>
|
|
</div>
|
|
</ng-container>
|
|
</div>
|
|
</div>
|
|
<div mat-dialog-actions>
|
|
<div class="flex-grow-1">
|
|
<mat-checkbox color="primary" i18n (change)="onChangeStaySignedIn($event)"
|
|
>Stay signed in</mat-checkbox
|
|
>
|
|
</div>
|
|
<div>
|
|
<button
|
|
color="primary"
|
|
mat-flat-button
|
|
[disabled]="!data.accessToken"
|
|
[mat-dialog-close]="data"
|
|
>
|
|
<ng-container i18n>Sign in</ng-container>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
|