0
0
Fork 0
mirror of https://github.com/dani-garcia/vaultwarden synced 2024-05-17 20:33:47 +02:00
bitwarden_rs/web-vault/app/accounts/views/accountsVerifyRecoverDelete.html
2018-02-10 01:00:55 +01:00

22 lines
804 B
HTML

<div class="login-box">
<div class="login-logo">
<i class="fa fa-shield"></i> <b>bit</b>warden
</div>
<div class="login-box-body">
<div ng-if="deleting">
Deleting account...
</div>
<div ng-if="!deleting">
<div class="callout callout-warning">
<h4><i class="fa fa-warning fa-fw"></i> Warning</h4>
This will permanently delete your account. This cannot be undone.
</div>
<p>
You have requested to delete your bitwarden account (<b>{{email}}</b>).
Click the button below to confirm and proceed.
</p>
<button ng-click="delete()" class="btn btn-danger btn-block btn-flat">Delete Account</button>
</div>
</div>
</div>