mirror of
https://github.com/bitwarden/web
synced 2025-12-20 02:03:29 +00:00
2fa method selection
This commit is contained in:
15
src/app/accounts/views/accountsTwoFactorMethods.html
Normal file
15
src/app/accounts/views/accountsTwoFactorMethods.html
Normal file
@@ -0,0 +1,15 @@
|
||||
<div class="modal-header">
|
||||
<button type="button" class="close" ng-click="close()" aria-label="Close"><span aria-hidden="true">×</span></button>
|
||||
<h4 class="modal-title"><i class="fa fa-key"></i> Two-step Providers</h4>
|
||||
</div>
|
||||
<div class="modal-body no-padding">
|
||||
<div class="list-group" ng-repeat="provider in providers">
|
||||
<a href="#" stop-click class="list-group-item" ng-click="choose(provider)">
|
||||
<h4 class="list-group-item-heading">{{::provider.name}}</h4>
|
||||
<p class="list-group-item-text">{{::provider.description}}</p>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="modal-footer">
|
||||
<button type="button" class="btn btn-default btn-flat" ng-click="close()">Close</button>
|
||||
</div>
|
||||
Reference in New Issue
Block a user