-
Notifications
You must be signed in to change notification settings - Fork 46
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
37 additions
and
17 deletions.
There are no files selected for viewing
29 changes: 17 additions & 12 deletions
29
web-app/src/app/ingress/authorization/authorization.component.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,19 @@ | ||
<div class="title">Access Code</div> | ||
<div class="subtitle">Please enter your Mage access code. If you do not have an access code please ask you Mage administrator to provide you with one.</div> | ||
<div class="authorization"> | ||
<div class="header"> | ||
<div class="header__title">Access Code</div> | ||
<div class="header__message">Please enter your Mage access code. If you do not have an access code please ask you Mage | ||
administrator to provide you with one.</div> | ||
</div> | ||
|
||
<div> | ||
<mat-form-field appearance="fill"> | ||
<mat-label>Access Code</mat-label> | ||
<input matInput placeholder="Access Code" type="deviceId" [formControl]="deviceId" required> | ||
<mat-error *ngIf="deviceId.hasError('invalid')">Invalid access code</mat-error> | ||
</mat-form-field> | ||
</div> | ||
<div> | ||
<mat-form-field appearance="fill"> | ||
<mat-label>Access Code</mat-label> | ||
<input matInput placeholder="Access Code" type="deviceId" [formControl]="deviceId" required> | ||
<mat-error *ngIf="deviceId.hasError('invalid')">Invalid access code</mat-error> | ||
</mat-form-field> | ||
</div> | ||
|
||
<div class="authorize"> | ||
<button mat-flat-button color="primary" (click)="authorize()">Continue to Mage</button> | ||
</div> | ||
<div class="authorize"> | ||
<button mat-flat-button color="primary" (click)="authorize()">Continue to Mage</button> | ||
</div> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters