bitwarden-estensione-browser/src/app/settings/domain-rules.component.html

21 lines
651 B
HTML
Raw Normal View History

2018-06-26 05:16:59 +02:00
<div class="page-header">
<h1>{{'domainRules' | i18n}}</h1>
</div>
<p>{{'domainRulesDesc' | i18n}}</p>
<h2>{{'customEqDomains' | i18n}}</h2>
<i class="fa fa-spinner fa-spin text-muted" *ngIf="loading"></i>
<table class="table table-hover table-list" *ngIf="!loading && custom.length > 0">
<tbody>
<tr *ngFor="let d of custom">
</tr>
</tbody>
</table>
<h2>{{'globalEqDomains' | i18n}}</h2>
<i class="fa fa-spinner fa-spin text-muted" *ngIf="loading"></i>
<table class="table table-hover table-list" *ngIf="!loading && global.length > 0">
<tbody>
<tr *ngFor="let d of global">
</tr>
</tbody>
</table>