1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-06-26 10:35:48 +02:00

add login

This commit is contained in:
Kyle Spearrin 2017-10-18 13:04:23 -04:00
parent 170484ba11
commit c3121726d8
2 changed files with 5 additions and 2 deletions

View File

@ -91,8 +91,11 @@
"autoFillInfo": {
"message": "There are no logins available to auto-fill for the current browser tab."
},
"addLogin": {
"message": "Add a Login"
},
"addItem": {
"message": "Add an Item"
"message": "Add Item"
},
"passwordHint": {
"message": "Password Hint"

View File

@ -22,7 +22,7 @@
<div class="list-section-items" ng-class="{'list-no-selection': !loginCiphers.length}">
<div class="list-section-item" ng-if="loaded && !loginCiphers.length">
<p>{{i18n.autoFillInfo}}</p>
<button ng-click="addCipher()" class="btn btn-link btn-block">{{i18n.addItem}}</button>
<button ng-click="addCipher()" class="btn btn-link btn-block">{{i18n.addLogin}}</button>
</div>
<cipher-items ng-if="loginCiphers.length" ciphers="loginCiphers" on-view="viewCipher"
on-selected="fillCipher" selection-title="i18n.autoFill"></cipher-items>