Looking for some help with my code. I'm trying to display a bootstrap icon instead of a button. Can anyone spot what's causing the issue?
<input type="submit" value="Update" class="btn btn-default btn-update" />
I attempted the following without success. Any suggestions on how to fix it?
<input type="submit" value="Update" class="glyphicon glyphicon-remove" />
Also tried this approach:
<input type="submit" value="Update" class="btn btn-default glyphicon glyphicon-remove" />