Is it possible to place links on Login and on Register here?
You could add a function call when clicking on it:
<input type="text" onclick="navigate()" value="my-value" />
...
function navigate(){
window.open("my-url",'_blank');
}
No, inside input you can't use any tags. You can change input role
or appearance
, but it's a bad way.
according to w3c, the end tag is forbidden on an input tag this means that you cannot place any element inside of an input tag
http://www.w3.org/TR/html401/interact/forms.html