aboutsummaryrefslogtreecommitdiff
path: root/src/app/authorization-request/authorization-request.component.html
blob: 4d43cd456db193526bbc0c8fc784f99a0e50dd5f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<div style="text-align: center;">
  <i class="fa fa-2x fa-openid"></i> 
  <b class="fa-2x" > {{getMessage("authorization_request_html@personalInfo")}} </b>
  <br/>
  <span *ngIf="isClientVerified() === undefined">
    <i class="fa fa-2x fa-circle-o-notch fa-spin fa-fw"></i> 
    <b class="fa-2x" > {{getMessage("authorization_request_html@verifyRequest")}}</b>
  </span>
  <br/>
</div>
<div *ngIf="isClientVerified() === undefined" style="text-align: center;">
  <button class="btn btn-danger mt-4" *ngIf="isClientVerified() === undefined" (click)="cancelRequest()">
    <span class="fa fa-ban"></span> {{getMessage("authorization_request_html@cancelRequest")}}
  </button>
</div>