JAYASWAROOP commited on
Commit
9dd802d
1 Parent(s): c427c8d

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +24 -0
index.html CHANGED
@@ -463,6 +463,30 @@ button:hover {
463
  <div style="width: 250px;">
464
  <input type="text" id="search" placeholder="Search..." class="form-control">
465
  </div>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
466
 
467
  </div>
468
  <div>
 
463
  <div style="width: 250px;">
464
  <input type="text" id="search" placeholder="Search..." class="form-control">
465
  </div>
466
+ <form>
467
+ <fieldset>
468
+
469
+ <div class="mb-3">
470
+ <label for="disabledTextInput" class="form-label">Disabled input</label>
471
+ <input type="text" id="disabledTextInput" class="form-control" placeholder="Disabled input">
472
+ </div>
473
+ <div class="mb-3">
474
+ <label for="disabledSelect" class="form-label">Disabled select menu</label>
475
+ <select id="disabledSelect" class="form-select">
476
+ <option>Disabled select</option>
477
+ </select>
478
+ </div>
479
+ <div class="mb-3">
480
+ <div class="form-check">
481
+ <input class="form-check-input" type="checkbox" id="disabledFieldsetCheck">
482
+ <label class="form-check-label" for="disabledFieldsetCheck">
483
+ Can't check this
484
+ </label>
485
+ </div>
486
+ </div>
487
+ <button type="submit" class="btn btn-primary">Submit</button>
488
+ </fieldset>
489
+ </form>
490
 
491
  </div>
492
  <div>