Advertisement
Shell_Casing

template form

Jul 22nd, 2018
319
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 1.31 KB | None | 0 0
  1.  <form id="membershipForm" (submit)="searchReddit($event);">
  2.  
  3.           <div class="form-group">
  4.             <label class=" ">
  5.               <input type="checkbox" name="memberType" class=" ">
  6.               Volunteer
  7.             </label>
  8.           </div>
  9.  
  10.           <div class="form-group">
  11.           <label class=" ">
  12.               <input type="checkbox" name="memberType" class=" ">
  13.               Organizer
  14.             </label>
  15.           </div>
  16.  
  17.           <div class="form-group">
  18.           <label class=" ">
  19.               <input type="checkbox" name="memberType" class=" ">
  20.               Photographer
  21.             </label>
  22.           </div>
  23.  
  24.           <div class="form-group">
  25.           <label class=" ">
  26.               <input type="checkbox" name="memberType" class=" ">
  27.               Videographer
  28.             </label>
  29.           </div>
  30.  
  31.           <div class="form-group">
  32.           <label class=" ">
  33.               <input type="checkbox" name="memberType" class=" ">
  34.               Interpreter
  35.             </label>
  36.           </div>
  37.  
  38.           <div class="form-group">
  39.           <label class=" ">   Other: (please mention) </label>
  40.             <input name="other" type="text" class="form-control-lg">
  41.           </div>
  42.  
  43.           <input type="submit" class="btn btn-success btn-block">
  44.  
  45.     </form>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement