HTML to make fields mandatory

PHOTO EMBED

Mon Apr 04 2022 22:28:23 GMT+0000 (Coordinated Universal Time)

Saved by @taracatac #javascript

//The below is HTML from the Widget: Vendor Validation
//It was modifed per DMND0063775 Make ACH fields mandatory
//This is the HTML around the field: Financial Institution Name

 <div ng-if="data.terms == 'ach'" class ="row">
           <div class="col-md-6">
              <div class="form-group">
                <label for="cs_email">Financial Institution Name*</label>
                <input ng-model="data.financial_name" id="rNumber" placeholder="" type="text" name="Financial Institution Name" class="form-control" required="required">
                <div class="help-block with-errors"></div>
              </div>
            </div>
            </div>
content_copyCOPY

https://www.digitalocean.com/community/tutorials/angularjs-form-validation