mirror of
https://github.com/turt2live/matrix-dimension.git
synced 2024-10-01 01:05:53 -04:00
9dc4e99aca
- the traslation feature without the changes from other branches
32 lines
1.4 KiB
HTML
32 lines
1.4 KiB
HTML
<div class="wrapper">
|
|
<div class="boat">
|
|
<div class="prompt">
|
|
<div class="diagram">
|
|
<div class="circle {{selfState}}">
|
|
<i class="fa fa-user fa-2x"></i>
|
|
<span class="title">{{'You' | translate}}</span>
|
|
</div>
|
|
<div class="link {{managerState}}"></div>
|
|
<div class="circle {{managerState}}">
|
|
<i class="fa fa-cubes fa-2x"></i>
|
|
<span class="title">{{'Integrations' | translate}}</span>
|
|
</div>
|
|
<div class="link {{homeserverState}}"></div>
|
|
<div class="circle {{homeserverState}}">
|
|
<i class="fa fa-server fa-2x"></i>
|
|
<span class="title">Homeserver</span>
|
|
</div>
|
|
</div>
|
|
<p *ngIf="!isSupported">
|
|
{{'Your client is too old to use this widget. Try upgrading your client to the latest available version, or contact the author to try and diagnose the problem. Your client needs to support OpenID information exchange.' | translate}}
|
|
</p>
|
|
<div *ngIf="isSupported">
|
|
<p>{{message}}</p>
|
|
<button type="button" (click)="start()" class="btn btn-primary btn-large" [disabled]="isBusy">
|
|
{{'Check connection' | translate}}
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|