Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[PM-7930] Add ability to pop out extension to user decryption options component #9037

Merged
merged 11 commits into from
Jun 16, 2024
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
<div id="login-initiated">
<header>
<h1 class="margin-auto">
<app-header>
<div class="left">
<app-pop-out></app-pop-out>
</div>
<h1 class="center">
<span class="title">{{ "loginInitiated" | i18n }}</span>
</h1>
</header>

<div class="right"></div>
</app-header>
<div class="content login-page">
<div class="full-loading-spinner" *ngIf="loading">
<i class="bwi bwi-spinner bwi-spin bwi-3x" aria-hidden="true"></i>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
<div class="login-with-device">
<header>
<h1 class="login-center">
<app-header>
<div class="left">
<app-pop-out></app-pop-out>
</div>
<h1 class="center">
<span class="title">{{ "logIn" | i18n }}</span>
</h1>
</header>
<div class="right"></div>
</app-header>
<div class="content login-page">
<ng-container *ngIf="state == StateEnum.StandardAuthRequest">
<div>
Expand Down