I have tried using multiple hidden inputs and and escape chars, but obviously the formatting doesn't allow the value to be entered correctly so I've tried using special chars and most likely leaves it open for spoofing.
<div class="form-group">
<input type="hidden" name="URL[]" value="<a href=">"> <!--<a href="-->
<label for="URL">URL link</label>
<input type="url" class="form-control" id="URL" name="URL[]" value-hidden="https">
<input type="hidden" name="URL[]" value=""</a>"> <!--"</a>-->
</div>
Is there a way? Perhaps using JQuery or should I consider implementing this in my post method? Thanks!