1
0
mirror of https://github.com/bitwarden/browser.git synced 2025-01-07 19:07:45 +01:00

more form fixes

This commit is contained in:
Kyle Spearrin 2018-07-13 14:55:50 -04:00
parent df9282e759
commit 19d835c793
3 changed files with 2 additions and 5 deletions

View File

@ -1,4 +1,4 @@
<form (ngSubmit)="submit()" class="container"> <form (ngSubmit)="submit()" class="container" ngNativeValidate>
<div class="row justify-content-md-center mt-5"> <div class="row justify-content-md-center mt-5">
<div class="col-5"> <div class="col-5">
<p class="text-center mb-4"> <p class="text-center mb-4">

View File

@ -17,7 +17,7 @@
<div class="modal-footer"> <div class="modal-footer">
<button appBlurClick type="submit" class="btn btn-danger btn-submit" [disabled]="form.loading"> <button appBlurClick type="submit" class="btn btn-danger btn-submit" [disabled]="form.loading">
<i class="fa fa-spinner fa-spin"></i> <i class="fa fa-spinner fa-spin"></i>
<span>{{'deauthorize' | i18n}}</span> <span>{{'deauthorizeSessions' | i18n}}</span>
</button> </button>
<button type="button" class="btn btn-outline-secondary" data-dismiss="modal">{{'close' | i18n}}</button> <button type="button" class="btn btn-outline-secondary" data-dismiss="modal">{{'close' | i18n}}</button>
</div> </div>

View File

@ -861,9 +861,6 @@
"deauthorizeSessions": { "deauthorizeSessions": {
"message": "Deauthorize Sessions" "message": "Deauthorize Sessions"
}, },
"deauthorize": {
"message": "Deauthorize"
},
"deauthorizeSessionsDesc": { "deauthorizeSessionsDesc": {
"message": "Concerned your account is logged in on another device? Proceed below to deauthorize all computers or devices that you have previously used. This security step is recommended if you previously used a public PC or accidentally saved your password on a device that isn't yours. This step will also clear all previously remembered two-step login sessions." "message": "Concerned your account is logged in on another device? Proceed below to deauthorize all computers or devices that you have previously used. This security step is recommended if you previously used a public PC or accidentally saved your password on a device that isn't yours. This step will also clear all previously remembered two-step login sessions."
}, },