Change text from "Submit" on input tag

html

Solution

The `value` attribute on `submit`-type `<input>` elements controls the text displayed.

<input type="submit" class="like" value="Like" />

Problem

I have a tag, `<input type="submit" class="like"/>`. I want to have the text inside the button say "Like", but right now, it says "Submit". `class="like"` is the CSS of the button, by the way.

Original source