1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-25 12:43:36 +00:00

stub out domain rules page

This commit is contained in:
Kyle Spearrin
2018-06-25 23:16:59 -04:00
parent 03dfda7a17
commit 4bd47f728a
6 changed files with 73 additions and 1 deletions

View File

@@ -0,0 +1,20 @@
<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>