mirror of
https://github.com/nextcloud/passman.git
synced 2025-11-08 05:04:04 +08:00
Updated passwords-tool ui
Signed-off-by: fnuesse <felix.nuesse@t-online.de>
This commit is contained in:
parent
0751fbf2c6
commit
558f2812ec
2 changed files with 22 additions and 8 deletions
|
|
@ -20,12 +20,26 @@
|
|||
*
|
||||
*/
|
||||
|
||||
.spacer-top-30{
|
||||
margin-top: 30px;
|
||||
}
|
||||
.scan-result-table {
|
||||
margin-top: 10px;
|
||||
td {
|
||||
vertical-align: top !important;
|
||||
}
|
||||
.score {
|
||||
width: 55%;
|
||||
padding-left: 0px;
|
||||
padding-right: 15px;
|
||||
}
|
||||
.label-audit{
|
||||
width: 15%;
|
||||
}
|
||||
}
|
||||
.detail_box{
|
||||
border: 1px solid var(--color-border-dark);
|
||||
margin-top: 25px;
|
||||
padding: 5px;
|
||||
}
|
||||
|
||||
.error {
|
||||
|
|
|
|||
|
|
@ -10,23 +10,23 @@
|
|||
</div>
|
||||
<div class="row" ng-show="scan_result">
|
||||
<div class="col-xs-12">
|
||||
<p>{{ 'scan.result.msg' | translate}}<br/>
|
||||
<p class="spacer-top-30"><b>{{ 'scan.result.msg' | translate}}</b><br/>
|
||||
<span translate="scan.result"
|
||||
translate-values='{ scan_result: scan_result.length}'></span>
|
||||
<br/>
|
||||
</p>
|
||||
<table class="table scan-result-table">
|
||||
<table class="table scan-result-table spacer-top-30">
|
||||
<thead>
|
||||
<tr>
|
||||
<td>{{ 'label' | translate}}</td>
|
||||
<td>{{ 'score' | translate}}</td>
|
||||
<td>{{ 'password' | translate}}</td>
|
||||
<td>{{ 'action' | translate}}</td>
|
||||
<td><b>{{ 'label' | translate}}</b></td>
|
||||
<td><b>{{ 'score' | translate}}</b></td>
|
||||
<td><b>{{ 'password' | translate}}</b></td>
|
||||
<td><b>{{ 'action' | translate}}</b></td>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr ng-repeat="result in scan_result | orderBy:'password_zxcvbn_result.score'">
|
||||
<td>{{result.label}}</td>
|
||||
<td class="label-audit">{{result.label}}</td>
|
||||
<td class="score">
|
||||
<ng-password-meter password="result.password"></ng-password-meter>
|
||||
</td>
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue