53 lines
2.0 KiB
HTML
53 lines
2.0 KiB
HTML
<!-- Begin page -->
|
|
<div class="wrapper">
|
|
<app-sidebar></app-sidebar>
|
|
|
|
<!-- ============================================================== -->
|
|
<!-- Start Page Content here -->
|
|
<!-- ============================================================== -->
|
|
|
|
<div id="content">
|
|
<app-topbar></app-topbar>
|
|
<!-- Start Content-->
|
|
<div class="container-fluid" appMenuSelection>
|
|
<nav aria-label="breadcrumb">
|
|
<ol class="breadcrumb">
|
|
<li class="breadcrumb-item"><a routerLink="/home">Home</a></li>
|
|
<li class="breadcrumb-item"><a routerLink="/accounts">Accounts</a></li>
|
|
<li class="breadcrumb-item active" aria-current="page">Export Accounts</li>
|
|
</ol>
|
|
</nav>
|
|
<div class="card">
|
|
<mat-card-title class="card-header">
|
|
EXPORT ACCOUNTS
|
|
</mat-card-title>
|
|
<div class="card-body">
|
|
<form>
|
|
<div class="form-inline mb-2">
|
|
<mat-form-field appearance="outline">
|
|
<mat-label>Export : </mat-label>
|
|
<mat-select id="accountType">
|
|
<mat-option value="vendors">VENDORS</mat-option>
|
|
<mat-option value="partners">PARTNERS</mat-option>
|
|
<mat-option value="selected">SELECTED</mat-option>
|
|
</mat-select>
|
|
</mat-form-field>
|
|
</div>
|
|
<div class="form-inline mb-3">
|
|
<div class="form-group form-check">
|
|
<label class="form-check-label mr-2" for="transfers">Include transfers?</label>
|
|
<mat-checkbox id="transfers"></mat-checkbox>
|
|
</div>
|
|
</div>
|
|
<button mat-raised-button color="primary" type="submit" class="btn btn-outline-primary"> EXPORT </button>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<app-footer appMenuSelection></app-footer>
|
|
</div>
|
|
<!-- ============================================================== -->
|
|
<!-- End Page content -->
|
|
<!-- ============================================================== -->
|
|
</div>
|