Advertisement
Guest User

Untitled

a guest
Jun 18th, 2019
216
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.         <div class="jumbotron jumbotron-fluid">
  2.             <div class="container">
  3.               <h1 class="display-4">Employee Data Management</h1>
  4.                 <p class="lead">A Comprehensive Directory of Employee Billable Hours</p>
  5.             </div>
  6.         </div>
  7.  
  8.         <br>
  9.        
  10.         <div class="card">
  11.         <div class="card-header">Add Person</div>
  12.             <form>
  13.                 <div class="form-group">
  14.                     <label for="formGroupExampleInput">Name</label>
  15.                     <input type="text" class="form-control" id="formGroupExampleInput" placeholder="">
  16.                 </div>
  17.                 <div class="form-group">
  18.                     <label for="formGroupExampleInput2">Role</label>
  19.                     <input type="text" class="form-control" id="formGroupExampleInput2" placeholder="">
  20.                 </div>
  21.                 <div class="form-group">
  22.                     <label for="formGroupExampleInput3">Rate (Monthly)</label>
  23.                     <input type="text" class="form-control" id="formGroupExampleInput3" placeholder="">
  24.                 </div>
  25.                 <div class="form-group">
  26.                     <label for="formGroupExampleInput4">Date Hired</label>
  27.                     <input type="text" class="form-control" id="formGroupExampleInput4" placeholder="">
  28.                 </div>
  29.                 <button type="submit" class="btn btn-primary">Submit</button>
  30.             </form>
  31.         </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement