novo-elements
Version:
Bullhorn's NOVO Element Repository for Angular 2
26 lines (25 loc) • 1.04 kB
HTML
<novo-modal>
<header title="Add Contact" icon="person" theme="contact">
<utils>
<util-action icon="times" (click)="close()"></util-action>
</utils>
</header>
<section>
<novo-form [form]="textForm">
<div class="novo-form-row">
<novo-control [form]="textForm" [control]="textControl"></novo-control>
</div>
<div class="novo-form-row">
<novo-control [form]="textForm" [control]="emailControl"></novo-control>
</div>
<div class="novo-form-row">
<novo-control [form]="textForm" [control]="numberControl"></novo-control>
</div>
<div class="novo-form-row">
<novo-control [form]="textForm" [control]="pickerControl"></novo-control>
</div>
</novo-form>
</section>
<button theme="standard" (click)="close()">Cancel</button>
<button theme="primary" color="success" icon="check" (click)="close()">Save</button>
</novo-modal>