bitwarden-estensione-browser/src/app/settings/two-factor-email.component....

65 lines
3.8 KiB
HTML
Raw Normal View History

2019-10-11 17:47:41 +02:00
<div class="modal fade" tabindex="-1" role="dialog" aria-modal="true" aria-labelledby="2faEmailTitle">
<div class="modal-dialog" role="document">
2018-06-27 22:56:11 +02:00
<div class="modal-content">
<div class="modal-header">
2019-10-11 17:47:41 +02:00
<h2 class="modal-title" id="2faEmailTitle">
2018-06-27 22:56:11 +02:00
{{'twoStepLogin' | i18n}}
<small>{{'emailTitle' | i18n}}</small>
</h2>
2019-10-11 17:22:21 +02:00
<button type="button" class="close" data-dismiss="modal" appA11yTitle="{{'close' | i18n}}">
2018-06-27 22:56:11 +02:00
<span aria-hidden="true">&times;</span>
</button>
</div>
2019-02-21 22:50:37 +01:00
<app-two-factor-verify [organizationId]="organizationId" [type]="type" (onAuthed)="auth($event)"
*ngIf="!authed">
</app-two-factor-verify>
2018-06-27 22:56:11 +02:00
<form #form (ngSubmit)="submit()" [appApiAction]="formPromise" ngNativeValidate *ngIf="authed">
<div class="modal-body">
<ng-container *ngIf="enabled">
<app-callout type="success" title="{{'enabled' | i18n}}" icon="fa-check-circle">
{{'twoStepLoginProviderEnabled' | i18n}}
</app-callout>
<strong>{{'email' | i18n}}:</strong> {{email}}
</ng-container>
<ng-container *ngIf="!enabled">
<p class="d-flex">
<span class="mr-3">{{'twoFactorEmailDesc' | i18n}}</span>
<img src="../../images/two-factor/1.png" class="float-right ml-auto" alt="">
</p>
<div class="form-group">
<label for="email">1. {{'twoFactorEmailEnterEmail' | i18n}}</label>
2019-02-21 22:50:37 +01:00
<input id="email" type="text" name="Email" class="form-control" [(ngModel)]="email" required
inputmode="email" appInputVerbatim="false">
2018-06-27 22:56:11 +02:00
</div>
<div class="mb-3 d-flex">
2019-02-21 22:50:37 +01:00
<button #sendBtn type="button"
class="btn btn-outline-primary btn-sm btn-submit align-self-start" (click)="sendEmail()"
[appApiAction]="emailPromise" [disabled]="sendBtn.loading">
2019-10-11 16:35:24 +02:00
<i class="fa fa-spinner fa-spin" title="{{'loading' | i18n}}" aria-hidden="true"></i>
2018-06-27 22:56:11 +02:00
<span>{{'sendEmail' | i18n}}</span>
</button>
<span class="text-success ml-3" *ngIf="sentEmail">
{{'verificationCodeEmailSent' | i18n : sentEmail}}
</span>
</div>
<div class="form-group">
<label for="token">2. {{'twoFactorEmailEnterCode' | i18n}}</label>
2019-02-21 22:50:37 +01:00
<input id="token" type="text" name="Token" class="form-control" [(ngModel)]="token" required
appInputVerbatim>
2018-06-27 22:56:11 +02:00
</div>
</ng-container>
</div>
<div class="modal-footer">
2018-07-18 05:15:15 +02:00
<button type="submit" class="btn btn-primary btn-submit" [disabled]="form.loading">
2019-10-11 16:35:24 +02:00
<i class="fa fa-spinner fa-spin" title="{{'loading' | i18n}}" aria-hidden="true"></i>
2018-06-27 23:50:31 +02:00
<span *ngIf="!enabled">{{'enable' | i18n}}</span>
2018-06-27 22:56:11 +02:00
<span *ngIf="enabled">{{'disable' | i18n}}</span>
</button>
2019-02-21 22:50:37 +01:00
<button type="button" class="btn btn-outline-secondary"
data-dismiss="modal">{{'close' | i18n}}</button>
2018-06-27 22:56:11 +02:00
</div>
</form>
</div>
</div>
</div>