-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhtmlcode.txt
More file actions
31 lines (31 loc) · 1.04 KB
/
htmlcode.txt
File metadata and controls
31 lines (31 loc) · 1.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<div *ngIf="visibleEmployeeCreation">
<form #employeeInfo="ngForm" (ngSubmit)="onSubmit(employeeInfo.value)">
<div class="table">
<div class="row">
<div class="col-md-6">
<label for="employeename">Employee Name: </label>
</div>
<div class="col-md-6">
<input type="text" name="employeeName" class="form-control" ngModel />
</div>
</div>
<div class="row">
<div class="col-md-6">
<label for="employeesalary">Salary: </label>
</div>
<div class="col-md-6">
<input type="text" name="salary" class="form-control" ngModel />
</div>
</div>
<div class="row">
<div class="col-md-6">
<label for="departmentname">Department name: </label>
</div>
<div class="col-md-6">
<input type="text" name="departmentName" class="form-control" ngModel />
</div>
</div>
</div>
<input type="submit" value="Submit" class="btn btn-primary" />
</form>
</div>