zgo/src/app/business/business.component.html

12 lines
328 B
HTML
Raw Normal View History

2022-01-18 22:40:50 +00:00
<app-header></app-header>
<p>business works!</p>
<div align="center">
<mat-card class="centercard" [formGroup]="bizForm">
<p>Form</p>
<mat-form-field appearance="outline">
<mat-label>Business Name</mat-label>
<input matInput placeholder="Business Name" formControlName="name">
</mat-form-field>
</mat-card>
</div>