|
Adding a button in phpbb
I used this in my template that I'm currently using and it works fine but needs a little fine tuning for limiting guest access on the login page.
Just add this code to your index_body.tpl page at the top or what ever page you want it to show up on.You can change the text using the value="what ever you want"
<form>
<font color="red"></font>
<input type="button" name="button_one" value="Go back" onclick="window.open('ADD THE URL TO YOUR PAGE HERE', 'window', 'width=269,height=266')">
</form>
|