Advertisement
irobust

Angular From

May 22nd, 2018
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.50 KB | None | 0 0
  1. <div class="container">
  2.     <h3>Employee Form</h3>
  3.     <form>
  4.        
  5.         <div class="form-group" >
  6.             <label class="control-label">First Name</label>
  7.             <input type="text" class="form-control" name="firstName" >
  8.             <div class="alert alert-danger">
  9.                 First Name is required, and must be at least 3 characters.
  10.             </div>
  11.         </div>
  12.  
  13.         <div class="form-group">
  14.             <label>Last Name</label>
  15.             <input type="text" class="form-control" name="lastName">
  16.         </div>
  17.        
  18.         <div class="checkbox">
  19.             <label>
  20.                 <input type="checkbox" name="is-full-time"> Full Time Employee
  21.             </label>
  22.         </div>
  23.  
  24.         <label>Payment Type</label>
  25.         <div class="radio">
  26.             <label>
  27.                 <input type="radio" name="paymentType" value="w2" checked>
  28.                 W2
  29.             </label>
  30.         </div>
  31.         <div class="radio">
  32.             <label>
  33.                 <input type="radio" name="paymentType" value="1099">
  34.                 1099
  35.             </label>
  36.         </div>
  37.  
  38.  
  39.         <div class="form-group">
  40.             <label class="control-label">Primary Language</label>
  41.             <select class="form-control" #primaryLanguage name="primaryLanguage">
  42.  
  43.                 <option value="default">Select a Language...</option>
  44.             </select>
  45.         </div>
  46.         <button class="btn btn-primary" type="submit">Ok</button>
  47.     </form>
  48. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement