Currently I’m using a php web script where on the navigation menu you select the word “log-in” and when you log in, the word in the nav menu changes to “log out”, (enabling the user to select “log-out” when he wants to log out).
Here is the menu code:
<div class="menuh">
<ul>
<li><a href="[var.base_url]">home</a></li>
<li><a href="[var.login_out_link]">[var.login_out]</a></li>
</ul></div>
I’ve had someone change the look of the nav menu, and the code now looks like this:
<tr><td class="menu">
<table><tr>
<td><a class="btn_home" href="[var.base_url]"> </a></td>
<td><a class="btn_login" href="[var.login_out_link]">[var.login_out] </a></td>
</td></tr></table>
</td></tr>
However, the old word “log-in” still appears (above the new log-in button, and changes to “log-out”, as before).
How can I get the new log-in word/button to change to log-out? (and get rid of the old words?)