mirror of
https://github.com/bitwarden/browser
synced 2026-02-11 14:04:03 +00:00
* Replace usages of app-callout with bit-callout * Delete callout.component --------- Co-authored-by: Daniel James Smith <djsmith85@users.noreply.github.com>
17 lines
601 B
HTML
17 lines
601 B
HTML
<form [bitSubmit]="submit" [formGroup]="formGroup">
|
|
<bit-callout type="warning">{{ "deleteAccountWarning" | i18n }}</bit-callout>
|
|
<p bitTypography="body1" class="tw-text-center">
|
|
<strong>{{ email }}</strong>
|
|
</p>
|
|
<p bitTypography="body1">{{ "deleteRecoverConfirmDesc" | i18n }}</p>
|
|
<hr />
|
|
<div class="tw-flex tw-gap-2">
|
|
<button type="submit" bitButton bitFormButton buttonType="danger" [block]="true">
|
|
{{ "deleteAccount" | i18n }}
|
|
</button>
|
|
<a bitButton buttonType="secondary" routerLink="/login" [block]="true">
|
|
{{ "cancel" | i18n }}
|
|
</a>
|
|
</div>
|
|
</form>
|