I want to use images as buttons for login and logout in WebloginPE. The problem is that the value attribute can’t be empty for WebloginPE to work properly. For example:
<input type="submit" id="wlpeLogoutButton" name="service" value="logout" class="button_logout">
This will overlay the (ugly) text "logout" over my image button, I don’t want to use text. If I leave value empty WeblogPE will refuse to log out.
How can I make this work?
Edit: Added to this, is it possible to use <a> links instead of buttons? For example, if someone forgot his password I want a pure text link and not a button.