|
3 | 3 | }
|
4 | 4 |
|
5 | 5 | <div class="container">
|
6 |
| - <h2>Employees Record</h2> |
| 6 | + <h2>Employee Information</h2> |
7 | 7 | <button type="button" class="btn btn-primary" data-toggle="modal" data-target="#myModal" onclick="clearTextBox();">Add New Employee</button><br /><br />
|
8 | 8 | <table class="table table-bordered table-hover">
|
9 | 9 | <thead>
|
|
35 | 35 | <div class="modal-dialog">
|
36 | 36 | <div class="modal-content">
|
37 | 37 | <div class="modal-header">
|
38 |
| - @*<button type="button" class="close" data-dissmiss="modal"><span aria-hidden="true">×</span></button>*@ |
39 | 38 | <button type="button" class="close" data-dismiss="modal">×</button>
|
40 | 39 | <h4 class="modal-title" id="myModalLabel">Add Employee</h4>
|
41 | 40 | </div>
|
42 | 41 | <div class="modal-body">
|
43 | 42 | <form>
|
44 | 43 | <div class="form-group">
|
45 | 44 | <label for="EmployeeId">ID</label>
|
46 |
| - <input type="text" class="form-control" id="EmployeeID" placeholder="Id" disabled="disabled" /> |
| 45 | + <input type="text" class="form-control" id="EmployeeID" placeholder="Id" disabled="disabled" style="max-width: 100%;" /> |
47 | 46 | </div>
|
48 | 47 | <div class="form-group">
|
49 | 48 | <label for="Name">Name</label>
|
50 |
| - <input type="text" class="form-control" id="Name" placeholder="Name" /> |
| 49 | + <input type="text" class="form-control" id="Name" placeholder="Name" style="max-width: 100%;" /> |
51 | 50 | </div>
|
52 | 51 | <div class="form-group">
|
53 | 52 | <label for="Age">Age</label>
|
54 |
| - <input type="text" class="form-control" id="Age" placeholder="Age" /> |
| 53 | + <input type="text" class="form-control" id="Age" placeholder="Age" style="max-width: 100%;" /> |
55 | 54 | </div>
|
56 | 55 | <div class="form-group">
|
57 | 56 | <label for="State">State</label>
|
58 |
| - <input type="text" class="form-control" id="State" placeholder="State" /> |
| 57 | + <input type="text" class="form-control" id="State" placeholder="State" style="max-width: 100%;" /> |
59 | 58 | </div>
|
60 | 59 | <div class="form-group">
|
61 | 60 | <label for="Country">Country</label>
|
62 |
| - <input type="text" class="form-control" id="Country" placeholder="Country" /> |
| 61 | + <input type="text" class="form-control" id="Country" placeholder="Country" style="max-width: 100%;" /> |
63 | 62 | </div>
|
64 | 63 | </form>
|
65 | 64 | </div>
|
|
0 commit comments